Closed rkosafo closed 6 years ago
This is actually legal syntax in SQLite, but it does seem pretty pointless, so it might as well be an error on all backends.
a178ba7c922f55685c40bfbdfde0f96e9921aebc should knock this one out. All joins will require "on select * from a, b, c where ...
.
When an inner join is written without
on
, it does not fail at compile time but rather give a runtime error likeIncorrect syntax near ';'.
.Using the default model and tsql,
It will be nice if this can fail at compile time instead of at runtime.