Guillaume Gelin
Guillaume Gelin
The JS SDK has many nice examples: https://github.com/makenotion/notion-sdk-js/tree/4173ed8df18d666c7e313345d30b168523d895f4/examples Let's replicate them here. :)
When using functions spans, it appears that sometimes the closing parenthesis is included, sometimes not. Consider the following test: ```rust #[test] fn test_function_span() { let sql = "SELECT database(), left(user(),instr(concat(user(),'@'),'@')-1);";...
Hey there, thanks for the great project! I'm encountering an issue with the following query, which is valid in Snowflake: ```sql SELECT v.$2 FROM (VALUES (1, 'value1'), (2, 'value2')) AS...