-
I'm getting started fleshing out the Snowflake dialect. I'm unsure how I should approach support for these two join types.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @teej. In general, you should always add things to the generic code as the default path is supposed to be a super set of of SQL. Only go to dialect specific code when it's necessary.
For lateral joins, again, try to do it as generically as possible in the core parser. Happy to chat more if you're interested. |
Beta Was this translation helpful? Give feedback.
Hey @teej.
In general, you should always add things to the generic code as the default path is supposed to be a super set of of SQL. Only go to dialect specific code when it's necessary.
For lateral joins, again, try to do it as generically as po…