doc.go 380 B

123456789101112
  1. /*
  2. Package influxql implements a parser for the InfluxDB query language.
  3. InfluxQL is a DML and DDL language for the InfluxDB time series database.
  4. It provides the ability to query for aggregate statistics as well as create
  5. and configure the InfluxDB server.
  6. See https://docs.influxdata.com/influxdb/latest/query_language/
  7. for a reference on using InfluxQL.
  8. */
  9. package influxql