Skip to content

feat: remove owner from _pico_index table

Summary

Remove owner from _pico_index table, rename owner to initiator in CreateIndexParams and Ddl::CreateIndex

 enum Ddl {
     CreateIndex {
-        owner: UserId,
+        initiator: UserId,
     },
 }

 pub struct IndexDef {
-    pub owner: UserId,
 }


 pub struct CreateIndexParams {
-    pub(crate) owner: UserId,
+    pub(crate) initiator: UserId,
 }

Changelog is already up to date:

System table _pico_index format changed, ..., other fields were rearranged significantly, see [Architecture — System tables]


Edited by Yaroslav Dynnikov

Merge request reports