mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
range foundation
This commit is contained in:
parent
74f47e32ee
commit
ef298b2c79
2 changed files with 3 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ func (self *QueryParser) Parse() (query *Query, err error) {
|
|||
if token.Type != TYPE_LP {
|
||||
return nil, fmt.Errorf("Expected '(', found token %v.", token)
|
||||
}
|
||||
const shortForm = "2006-01-02 15:04"
|
||||
const shortForm = "2006-01-02T15:04"
|
||||
|
||||
ArgLoop:
|
||||
for {
|
||||
|
|
|
|||
|
|
@ -359,6 +359,7 @@ func init() {
|
|||
gob.Register(BaseQueryResult{})
|
||||
gob.Register(SetQueryResult{})
|
||||
gob.Register(GetQueryResult{})
|
||||
gob.Register(RangeQueryResult{})
|
||||
gob.Register(CatQueryResult{})
|
||||
gob.Register(UnionQueryResult{})
|
||||
gob.Register(IntersectQueryResult{})
|
||||
|
|
@ -368,6 +369,7 @@ func init() {
|
|||
|
||||
gob.Register(SetQueryStep{})
|
||||
gob.Register(GetQueryStep{})
|
||||
gob.Register(RangeQueryStep{})
|
||||
gob.Register(CatQueryStep{})
|
||||
gob.Register(UnionQueryStep{})
|
||||
gob.Register(IntersectQueryStep{})
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue