You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ibis/backends/risingwave/__init__.py
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -744,6 +744,7 @@ def create_source(
744
744
data_format: str,
745
745
encode_format: str,
746
746
encode_properties: dict|None=None,
747
+
includes: dict[str, str] |None=None,
747
748
) ->ir.Table:
748
749
"""Creating a source.
749
750
@@ -764,21 +765,35 @@ def create_source(
764
765
The encode format for the new source, e.g., "JSON". data_format and encode_format must be specified at the same time.
765
766
encode_properties
766
767
The properties of encode format, providing information like schema registry url. Refer https://docs.risingwave.com/docs/current/sql-create-source/ for more details.
768
+
includes
769
+
A dict of `INCLUDE` clauses of the form `{field: alias, ...}`.
770
+
Set value(s) to `None` if no alias is needed. Refer to https://docs.risingwave.com/docs/current/sql-create-source/ for more details.
0 commit comments