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
Currently, we do not allow user to define schema in column clause
CREATE SOURCE(a int, b int) FORMAT PLAIN ENCODE PROTOBUF;
ERROR: ExecuteError: Protocol error: User-defined schema is not allowed with FORMAT PLAIN ENCODE PROTOBUF
When the user wants to define a generated column, he must specify columns in the create source/table statement. We might need to introduce another syntax.
CREATE SOURCE(*, proc_time timestampz AS proctime()) FORMAT PLAIN ENCODE PROTOBUF;
The text was updated successfully, but these errors were encountered:
Currently, we do not allow user to define schema in column clause
When the user wants to define a generated column, he must specify columns in the create source/table statement. We might need to introduce another syntax.
The text was updated successfully, but these errors were encountered: