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
When saving the data from delta table to starrocks with starrocks-connector-for-apache-spark operations breaks with Value count does not match column count. Expect 6, but got 0.Column delimiter: 9,Row delimiter: 10.. error when data in the delta table contains /t or /n
When characters are filtered import works.
This is because by default, the csv mode is used. In the code, "\t" is used as the column separator. Similarly, rowDelimiter = "\n"; for the row separator.
When saving the data from delta table to starrocks with starrocks-connector-for-apache-spark operations breaks with
Value count does not match column count. Expect 6, but got 0.Column delimiter: 9,Row delimiter: 10..
error when data in the delta table contains /t or /nWhen characters are filtered import works.
The text was updated successfully, but these errors were encountered: