Skip to content

Fix bug with macros

Compare
Choose a tag to compare
@bossinc bossinc released this 06 Sep 20:00
· 54 commits to main since this release
4743948

Macros now handle multi param function args.

Before if your macro was select * from foo where $__params(FUNC(foo, bar)) it would parse the macro params as ["FUNC(foo", "bar)"]
It will now parse the params as ["FUNC(foo, bar)"]