| 123456789101112131415161718192021222324252627282930313233 |
- import { MssqlDatasource } from './datasource';
- import { MssqlQueryCtrl } from './query_ctrl';
- import { MssqlConfigCtrl } from './config_ctrl';
- const defaultQuery = `SELECT
- <time_column> as time,
- <text_column> as text,
- <tags_column> as tags
- FROM
- <table name>
- WHERE
- $__timeFilter(time_column)
- ORDER BY
- <time_column> ASC`;
- class MssqlAnnotationsQueryCtrl {
- static templateUrl = 'partials/annotations.editor.html';
- annotation: any;
- /** @ngInject */
- constructor() {
- this.annotation.rawQuery = this.annotation.rawQuery || defaultQuery;
- }
- }
- export {
- MssqlDatasource,
- MssqlDatasource as Datasource,
- MssqlQueryCtrl as QueryCtrl,
- MssqlConfigCtrl as ConfigCtrl,
- MssqlAnnotationsQueryCtrl as AnnotationsQueryCtrl,
- };
|