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
another question, what about fields which are sometimes empty: "Undefined field" i receive the following error:
risingwave_connector::parser: failed to parse non-pk column, padding with NULL error=Undefined field nename at ``
This message is just a warning and can be safely ignored in your case. It is saying that additionalCodeUom is defined in schema but not present in the actual json message, so it is treated as NULL . This is very likely the expected behavior, but unfortunately we do not have an option to suppress this warning completely.
Still ugly to show these errors ?
What about allowing users to suppress these warnings by explicitly defining a column as "nullable" in the table inside SQL?
Right now, the column by default is effectively nullable. But pretty often, the user may not even know if a column is supposed to be nullable or not.
Disabling all the warning messages is not ideal as unexpected situations may still occur and users want to be informed.
After change, in terms of parsing behavior:
by default: nullable
null: nullable
not null: reject null
In terms of warning:
by default: show warnings
null: no warnings for this particular column
not null: show warnings
The text was updated successfully, but these errors were encountered:
https://risingwave-community.slack.com/archives/C03BW71523T/p1724178084269959
What about allowing users to suppress these warnings by explicitly defining a column as "nullable" in the table inside SQL?
Right now, the column by default is effectively nullable. But pretty often, the user may not even know if a column is supposed to be nullable or not.
Disabling all the warning messages is not ideal as unexpected situations may still occur and users want to be informed.
After change, in terms of parsing behavior:
In terms of warning:
The text was updated successfully, but these errors were encountered: