Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit 0ba15c3

Browse files
gerrymanoimtswast
andauthored
bug: fix imports to point at sql registry (#64)
* Update compiler.py * bug: fix imports to point at sql registry Co-authored-by: Tim Swast <swast@google.com>
1 parent a302dca commit 0ba15c3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

ibis_bigquery/compiler.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,9 @@
2727
import toolz
2828

2929
try:
30-
from ibis.backends.base.sql.alchemy.registry import _literal as literal
31-
from ibis.backends.base.sql.alchemy.registry import fixed_arity, reduction
32-
from ibis.backends.base.sql.alchemy.registry import \
33-
sqlalchemy_operation_registry as operation_registry
34-
from ibis.backends.base.sql.alchemy.registry import unary
30+
from ibis.backends.base.sql.registry import (fixed_arity, literal,
31+
operation_registry, reduction,
32+
unary)
3533
except ImportError:
3634
try:
3735
# 2.x

0 commit comments

Comments
 (0)