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 b4e4785 commit e6fab9dCopy full SHA for e6fab9d
src/snowflake/snowpark/catalog.py
@@ -6,8 +6,6 @@
6
import re
7
from typing import List, Optional, Union
8
9
-from snowflake.core import view
10
-
11
from snowflake.snowpark._internal.analyzer.analyzer_utils import unquote_if_quoted
12
from snowflake.snowpark.exceptions import SnowparkSQLException
13
@@ -459,7 +457,7 @@ def get_view(
459
457
)[0]
460
458
except IndexError:
461
raise NotFoundError(
462
- f"View with name {view} could not be found in schema '{db_name}.{schema_name}'"
+ f"View with name {view_name} could not be found in schema '{db_name}.{schema_name}'"
463
)
464
465
def get_procedure(
0 commit comments