mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
77e7ae2a1b
* Add influxdbSqlSupport feature toggle * Add SQL option to the config page * Add SQL backend * Add metadata support in config page * Implement unified querying * Fix healthcheck query * fsql tests * secure grpc by default * code cleanup * Query handing for sql mode * Implement a placeholder sql editor * Fix query language dropdown * go mod updates * make lint-go * more make lint-go * remove unused runQuery * switch statements with default case * linting again
8 lines
127 B
Go
8 lines
127 B
Go
package influxdb
|
|
|
|
const (
|
|
influxVersionFlux = "Flux"
|
|
influxVersionInfluxQL = "InfluxQL"
|
|
influxVersionSQL = "SQL"
|
|
)
|