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
master
correct result
CREATE TABLE if NOT EXISTS t ( `test` INT, `v` variant ) ENGINE=OLAP DUPLICATE KEY(`test`) DISTRIBUTED BY HASH(test) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "binlog.enable" = "true", "variant_enable_flatten_nested" = "true" );
curl -X POST -H "Content-Type: application/json" -d '{ "name": "test", "src": { "host": "", "port": "", "thrift_port": "", "user": "root", "password": "", "database": "db_src", "table": "" }, "dest": { "host": "", "port": "", "thrift_port": "", "user": "root", "password": "", "database": "db_dest", "table": "" } }' http://127.0.0.1:9190/create_ccr
insert into t values(1, '{ "eventId": 1, "firstName": "Name1", "lastName": "Eric", "body": { "phoneNumbers": [ { "number": "1111111111", "type": "GSM", "callLimit": 5 }, { "number": "222222222", "type": "HOME", "callLimit": 3 }, { "number": "33333333", "callLimit": 2, "type": "WORK" } ] } }');
use db_src; select * from db_src; set describe_extend_variant_column = true; desc t;
use db_dest; select * from db_dest; set describe_extend_variant_column = true; desc t;
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Search before asking
Version
master
What's Wrong?
What You Expected?
correct result
How to Reproduce?
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: