You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ vtexplain -schema 'CREATE TABLE i (i INT NOT NULL,PRIMARY KEY(i))ENGINE=InnoDB'
-sql 'select 1 from i' -vschema '
{"s":{
"sharded":false,
"vindexes":{"hash":{"type":"hash"}},
"tables":{"i":{"column_vindexes":[{"column":"i","name":"hash"}]}}
}}'
select 1 from i
1 s/-: select 1 from i limit 10001
If I add only an "f float" column, it says it's unimplemented:
vtexplain with a simple table succeeds:
If I add only an "f float" column, it says it's unimplemented:
That line in ast.go seems to want to handle float types, at first glance at least.
The text was updated successfully, but these errors were encountered: