SQL: create index bug
When I try to create an index on a sharded table (42 instances) with data (600kk rows)
create index "cd_customer_account_customer_account_sk_idx3"
on "cd_customer_account" ("customer_account_sk")
option(timeout=36000);
I immidiately get an error ddl operation was aborted
with
июл 04 14:45:49 big1-vtb-1 picodata[1454851]: 2024-07-04 14:45:49.917 [1454851] main/289/.proc_apply_schema_change ddl_apply.rs:62 W> schema change aborted: lua error: Index 'cd_customer_account_customer_account_sk_idx3' already exists
I am more then sure that this index has never existed before.
Moreover, when I retry the same command there is no error in the log and DDL returns simply 0 modified rows.