We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768b6c0 commit 3250848Copy full SHA for 3250848
python/datafusion/catalog.py
@@ -66,9 +66,10 @@ def __init__(self, table: df_internal.Table) -> None:
66
"""This constructor is not typically called by the end user."""
67
self.table = table
68
69
+ @property
70
def schema(self) -> pyarrow.Schema:
71
"""Returns the schema associated with this table."""
- return self.table.schema()
72
+ return self.table.schema
73
74
@property
75
def kind(self) -> str:
0 commit comments