nextdreamblue commented on issue #18621:
URL: https://github.com/apache/doris/issues/18621#issuecomment-1515669507
before this issue, user can define default DUP_KEYS and some head columns
for keys.
after this issue, if user create table without set key type and key columns,
will create a DUP_KEYS olap table without key columns.
```
CREATE TABLE `test` (
`user_id` bigint(20) NULL,
`is_delete` tinyint(4) NULL,
`client_version_int` int(11) NULL
) ENGINE=OLAP
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`user_id`) BUCKETS 4
PROPERTIES (
"replication_allocation" = "tag.location.default: 1"
);
```
after this issue, user will get a duplicate table without key columns
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]