Skip to content

Commit

Permalink
fix(trino): remove filter index warning in Trino dialect
Browse files Browse the repository at this point in the history
  • Loading branch information
hovaesco authored and cpcloud committed Jul 13, 2023
1 parent a1a139f commit a2ae7ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ibis/backends/base/sql/alchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,9 @@ def _get_sqla_table(
warnings.filterwarnings(
"ignore", message="Did not recognize type", category=sa.exc.SAWarning
)
warnings.filterwarnings(
"ignore", message="index key", category=sa.exc.SAWarning
)
table = sa.Table(
name,
meta,
Expand Down

0 comments on commit a2ae7ae

Please sign in to comment.