wyxxxcat opened a new issue, #44426: URL: https://github.com/apache/doris/issues/44426
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version master ### What's Wrong?  ### What You Expected? correct result ### How to Reproduce? ``` 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; set describe_extend_variant_column = true; desc t; ``` ``` use db_dest; set describe_extend_variant_column = true; desc t; ``` ### Anything Else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org