wandayou commented on issue #35609:
URL: https://github.com/apache/doris/issues/35609#issuecomment-2138608063
> Table structure and query statements?
CREATE TABLE IF NOT EXISTS dwd_content_detail
(
id varchar(80),
feature_embedding array<array<FLOAT>>
)
UNIQUE KEY(id)
DISTRIBUTED BY HASH(id) BUCKETS 10
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"enable_unique_key_merge_on_write" = "true",
"light_schema_change" = "true",
"store_row_column" = "true",
"compression"="zstd"
);
SELECT id,feature_embedding,lag(feature_embedding,1,null) over (partition
by id) as feature_embedding_lag FROM dwd_content_detail
--
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]