File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -155,8 +155,9 @@ def determine_url_for_create_query(
155
155
raise SchemaNotDefinedException (
156
156
"Schema not defined in connection. Please try again with `--schema` flag."
157
157
)
158
- if not self ._schema_exists (db_name = db , schema_name = schema ):
159
- raise SchemaNotExistsException (f"Schema '{ schema } ' does not exist." )
158
+ # temporarily skip schema existence check due to server-side issue (SNOW-2110515)
159
+ # if not self._schema_exists(db_name=db, schema_name=schema):
160
+ # raise SchemaNotExistsException(f"Schema '{schema}' does not exist.")
160
161
if self .get_endpoint_exists (
161
162
url := f"{ SF_REST_API_URL_PREFIX } /databases/{ self .conn .database } /schemas/{ self .conn .schema } /{ plural_object_type } /"
162
163
):
Original file line number Diff line number Diff line change @@ -312,6 +312,7 @@ def test_create_error_database_not_exist(runner):
312
312
assert "Database 'THIS_DB_DOES_NOT_EXIST' does not exist." in result .output
313
313
314
314
315
+ @pytest .mark .skip (reason = "SNOW-2110515" )
315
316
@pytest .mark .integration
316
317
def test_create_error_schema_not_exist (runner , test_database ):
317
318
# schema does not exist
You can’t perform that action at this time.
0 commit comments