mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Bug: if a sql query had a where clause within parens, the entire clause would be ignored; and instead of it translating to a pql intersection, it would become an All(). This occured b/c the parser library mapped such an expresstion to a sqlparser.ParenExpr, and we did not have this as a condition in a type switch. So instead of treating a ParenExpr as nothing, we now recurse into it. |
||
|---|---|---|
| .. | ||
| column.go | ||
| ddl.go | ||
| extract.go | ||
| handler_test.go | ||
| mapper.go | ||
| mapper_test.go | ||
| mask.go | ||
| model.go | ||
| query.go | ||
| reduce.go | ||
| reduce_test.go | ||
| router.go | ||
| select.go | ||
| show.go | ||