We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab9bbe commit 1ab6e87Copy full SHA for 1ab6e87
1 file changed
src/databricks/sql/backend/filters.py
@@ -49,6 +49,7 @@ def _filter_sea_result_set(
49
Returns:
50
A filtered SEA result set
51
"""
52
+
53
# Get all remaining rows
54
all_rows = result_set.results.remaining_rows()
55
@@ -108,6 +109,7 @@ def filter_by_column_values(
108
109
110
A filtered result set
111
112
113
# Convert to uppercase for case-insensitive comparison if needed
114
if not case_sensitive:
115
allowed_values = [v.upper() for v in allowed_values]
@@ -154,6 +156,7 @@ def filter_tables_by_type(
154
156
155
157
A filtered result set containing only tables of the specified types
158
159
160
# Default table types if none specified
161
DEFAULT_TABLE_TYPES = ["TABLE", "VIEW", "SYSTEM TABLE"]
162
valid_types = (
0 commit comments