Skip to content

Commit

Permalink
feat(oracle): remove redundant brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
kangshung authored and cpcloud committed Nov 2, 2023
1 parent c743fa2 commit 2905484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/oracle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def _metadata(self, query: str) -> Iterable[tuple[str, dt.DataType]]:
t.c.data_type,
t.c.data_precision,
t.c.data_scale,
case([(t.c.nullable == "Y", True)], else_=False).label("nullable"),
case((t.c.nullable == "Y", True), else_=False).label("nullable"),
).where(t.c.table_name == name)

with self.begin() as con:
Expand Down

0 comments on commit 2905484

Please sign in to comment.