nloneday commented on issue #32376:
URL: https://github.com/apache/doris/issues/32376#issuecomment-2002967143
table definition
```
CREATE TABLE `security_info` (
`sec_code_par` varchar(75) NOT NULL,
...
`listed_board` varchar(6) NULL,
...
) ENGINE=OLAP
UNIQUE KEY(`sec_code_par`)
COMMENT 'OLAP'
DISTRIBUTED BY HASH(`sec_code_par`) BUCKETS 3
PROPERTIES (
"replication_allocation" = "tag.location.default: 3",
"in_memory" = "false",
"storage_format" = "V2",
"enable_unique_key_merge_on_write" = "true",
"disable_auto_compaction" = "false"
)
```
--
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]