Skip to content

Commit

Permalink
fixed materialization bug schema is a method must be called
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hartens committed Feb 11, 2025
1 parent 33c0bbe commit 6e1e2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phenex/ibis_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def create_view(self, table, name_table=None, overwrite=False):
database=database,
obj=table,
overwrite=overwrite,
schema=table.schema,
schema=table.schema(),
)

def create_table(self, table, name_table=None, overwrite=False):
Expand Down Expand Up @@ -283,7 +283,7 @@ def create_table(self, table, name_table=None, overwrite=False):
database=database,
obj=table,
overwrite=overwrite,
schema=table.schema,
schema=table.schema(),
)

def drop_table(self, name_table):
Expand Down

0 comments on commit 6e1e2da

Please sign in to comment.