We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when column_type is decimal64(10, 0)
decimal64(10, 0)
risingwave/src/connector/src/sink/starrocks.rs
Lines 316 to 341 in 0f0e3e7
ERROR risingwave_stream::task::stream_manager: actor exit with error actor_id=11 error=Executor error: Sink error: Starrocks error: starrocks sink error: invalid digit found in string
starrocks v3.1.7:
CREATE table starrocks_types( types_id int, c_decimal decimal ) ENGINE=OLAP UNIQUE KEY(`types_id`) DISTRIBUTED BY HASH(`types_id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1" );
rw:
CREATE TABLE starrocks_types ( types_id INT, c_decimal decimal, PRIMARY KEY (types_id) ); INSERT INTO starrocks_types VALUES (1, 0); CREATE SINK starrocks_types_sink FROM starrocks_types WITH ( connector = 'starrocks', type = 'append-only', starrocks.host = 'localhost', starrocks.mysqlport = '9030', starrocks.httpport = '8030', starrocks.user = 'users', starrocks.password = '123456', starrocks.database = 'demo', starrocks.table = 'starrocks_types', force_append_only='true' );
No response
The text was updated successfully, but these errors were encountered:
Could be a known issue #15664
Sorry, something went wrong.
xxhZs
No branches or pull requests
Describe the bug
when column_type is
decimal64(10, 0)
risingwave/src/connector/src/sink/starrocks.rs
Lines 316 to 341 in 0f0e3e7
Error message/log
To Reproduce
starrocks v3.1.7:
rw:
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: