Skip to content

Commit 1ab6e87

Browse files
line breaks after multi-line PRs
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 5ab9bbe commit 1ab6e87

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/databricks/sql/backend/filters.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def _filter_sea_result_set(
4949
Returns:
5050
A filtered SEA result set
5151
"""
52+
5253
# Get all remaining rows
5354
all_rows = result_set.results.remaining_rows()
5455

@@ -108,6 +109,7 @@ def filter_by_column_values(
108109
Returns:
109110
A filtered result set
110111
"""
112+
111113
# Convert to uppercase for case-insensitive comparison if needed
112114
if not case_sensitive:
113115
allowed_values = [v.upper() for v in allowed_values]
@@ -154,6 +156,7 @@ def filter_tables_by_type(
154156
Returns:
155157
A filtered result set containing only tables of the specified types
156158
"""
159+
157160
# Default table types if none specified
158161
DEFAULT_TABLE_TYPES = ["TABLE", "VIEW", "SYSTEM TABLE"]
159162
valid_types = (

0 commit comments

Comments
 (0)