Open mamcx opened 2 months ago
you could also potentially check the parse tree for structures you don't support and error if you find them (this is the approach we take in DataFusion and it works well) -- basically match on the structures you support and return a Not implemented error
for anyting else
We are building a new RDBMS that still has only partial support for the full
SQL
dialect of Postgres.This means that we need to parse the strings, and then rule out everything we still do not support. It will be easier and probably faster if we can do: