We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I'm trying to start a transaction in a task to execute multiple statements
To Reproduce Steps to reproduce the behavior:
CREATE OR REPLACE TASK EXAMPLE_TASK WAREHOUSE = EXPLORATION SCHEDULE = '5 minutes' AS BEGIN START TRANSACTION; SELECT * FROM SOME_TABLE; SELECT * FROM SOME_TABLE; COMMIT; END;
Expected behavior Since the rendered template works in a snowflake worksheet, I'd expect this to work in a migration too
Schemachange (please complete the following information):
Additional context I'm using Repeatable read isolation in my task, so I need the transaction, tried using BEGIN TRANSACTION too, same issue.
BEGIN TRANSACTION
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I'm trying to start a transaction in a task to execute multiple statements
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Since the rendered template works in a snowflake worksheet, I'd expect this to work in a migration too
Schemachange (please complete the following information):
Additional context
I'm using Repeatable read isolation in my task, so I need the transaction, tried using
BEGIN TRANSACTION
too, same issue.The text was updated successfully, but these errors were encountered: