feat(metric-engine): introduce index options from metric engine (#5374)

* feat(metric-engine): introduce index options from metric engine

* chore: fmt toml

* test: add sqlness test

* fix: ignore internal columns

* chore: remove unused dep

* chore: update sqlness result

* chore: ignore metric engine internal columns

* chore: refine code styling

* test: update sqlness test

* refactor: refactor `create_table_constraints`

* test: show index

* chore: apply suggestions from CR

* fix: set inverted index explicitly

* chore: apply suggestions from CR
This commit is contained in:
Weny Xu
2025-01-20 16:48:00 +08:00
committed by GitHub
parent 5287d46073
commit 385b1bcbb0
25 changed files with 734 additions and 146 deletions

View File

@@ -497,7 +497,7 @@ pub fn column_to_schema(
column_schema.insert_inverted_index_placeholder();
}
} else if inverted_index_cols.contains(&column.name().value) {
column_schema.with_inverted_index(true);
column_schema.set_inverted_index(true);
}
}