You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RPC Server compile/ and execute/ endpoints should accept macros defined inline in raw SQL. Our current strategy of sending the same text to the macros and sql arguments of the endpoints doesn't work because of the macro cache. The following query results in maximum recursion depth exceeded:
Feature
Feature description
The RPC Server
compile/
andexecute/
endpoints should accept macros defined inline in raw SQL. Our current strategy of sending the same text to themacros
andsql
arguments of the endpoints doesn't work because of the macro cache. The following query results inmaximum recursion depth exceeded
:The reason this happens is because we re-parse the entire contents of the macro file at runtime, so we end up in an infinite recursion scenario.
The text was updated successfully, but these errors were encountered: