We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48d36b3 commit 8d6169cCopy full SHA for 8d6169c
test/integ/test_direct_file_operation_utils.py
@@ -64,7 +64,9 @@ def _test_runner(
64
stage_name = special_stage_name or random_name_for_temp_object(
65
TempObjectType.STAGE
66
)
67
- cursor.execute(f"CREATE OR REPLACE SCOPED TEMP STAGE {stage_name}")
+ # note(whummer): removing "SCOPED" keyword below, to avoid `Unsupported feature 'SCOPED_TEMPORARY'` error
68
+ # cursor.execute(f"CREATE OR REPLACE SCOPED TEMP STAGE {stage_name}")
69
+ cursor.execute(f"CREATE OR REPLACE TEMP STAGE {stage_name}")
70
expected_content = "hello, world"
71
with TemporaryDirectory() as temp_dir:
72
base_file_name = special_base_file_name or "test.txt"
0 commit comments