Add index name to unsortable columns error message

This commit is contained in:
Francesco Allara 2024-02-14 11:49:27 +01:00
parent d00c187349
commit b1bc505807
14 changed files with 19 additions and 19 deletions

View file

@ -56,7 +56,7 @@ fn main() {
Some(path) => TempDir::new_in(path).unwrap(),
None => TempDir::new().unwrap(),
};
let index = Index::new("", options, tempdir.path()).unwrap();
let index = Index::new(None, options, tempdir.path()).unwrap();
let indexer_config = IndexerConfig::default();
let index_documents_config = IndexDocumentsConfig::default();