Skip to content

Commit

Permalink
fix: drop snowflake support for RowID
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrist committed Dec 12, 2022
1 parent e83b751 commit 47b01d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion ibis/backends/snowflake/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def _day_of_week_name(t, op):
# time and dates
ops.TimeFromHMS: fixed_arity(sa.func.time_from_parts, 3),
# columns
ops.RowID: (lambda *_: sa.func.seq8() + 1),
ops.DayOfWeekName: _day_of_week_name,
}
)
5 changes: 3 additions & 2 deletions ibis/backends/tests/test_column.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
"dask",
"datafusion",
"impala",
"mssql",
"mysql",
"pandas",
"polars",
"postgres",
"pyspark",
"polars",
"mssql",
"snowflake",
"trino",
]
)
Expand Down

0 comments on commit 47b01d3

Please sign in to comment.