Skip to content

Commit 12c4fe3

Browse files
committed
docs: update docstring for into_view method to clarify usage as ViewTable
1 parent 4b4c641 commit 12c4fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/datafusion/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __init__(self, df: DataFrameInternal) -> None:
122122
self.df = df
123123

124124
def into_view(self) -> pa.Table:
125-
"""Register this DataFrame as a view in the current session."""
125+
"""Register this DataFrame as a ViewTable which can be used in register_table"""
126126
return self.df.into_view()
127127

128128
def __getitem__(self, key: str | List[str]) -> DataFrame:

0 commit comments

Comments
 (0)