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
Is your feature request related to a problem? Please describe.
In my queries, I frequently use temporary tables because they are highly performant. However, I miss the type checking provided by the query!() macros when working with these tables.
Describe the solution you'd like
I propose one of the following solutions:
Allow Chained Queries: Support for queries separated by ;, enabling temporary table creation and usage in a single statement.
Schema Awareness for Temp Tables: Introduce a way to notify the query!() macro about the existence and schema of a temporary table.
Describe alternatives you've considered
Currently, I haven't explored any viable alternatives to achieve the same functionality.
Additional context
None at the moment.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In my queries, I frequently use temporary tables because they are highly performant. However, I miss the type checking provided by the
query!()
macros when working with these tables.Describe the solution you'd like
I propose one of the following solutions:
;
, enabling temporary table creation and usage in a single statement.query!()
macro about the existence and schema of a temporary table.Describe alternatives you've considered
Currently, I haven't explored any viable alternatives to achieve the same functionality.
Additional context
None at the moment.
The text was updated successfully, but these errors were encountered: