Merge pull request #1064 from influxdata/sgc-readspec

fix(storage): Add db/rp fields for InfluxDB OSS
pull/10616/head
Stuart Carnie 2018-10-12 07:21:04 -07:00 committed by GitHub
commit a005792a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -201,6 +201,9 @@ type ReadSpec struct {
// When GroupMode is GroupModeBy, the results will be grouped by the specified keys.
// When GroupMode is GroupModeExcept, the results will be grouped by all keys, except those specified.
GroupKeys []string
Database string // required by InfluxDB OSS
RetentionPolicy string // required by InfluxDB OSS
}
type Reader interface {