sqlite-vec/TODO
2024-11-13 13:37:54 -08:00

16 lines
537 B
Text

# partition
- [ ] UPDATE on partition key values
- remove previous row from chunk, insert into new one?
- [ ] properly sqlite3_vtab_nochange / sqlite3_value_nochange handling
# auxiliary columns
- DELETE and UPDATE support
- in xBestIndex, ensure there are no constraints on any aux column
- enforce column types, ie STRICT?
- NOT NULL?
- drop aux shadow table on xDestroy
- perf: INSERT stmt should be cached on vec0_vtab
- perf: LEFT JOIN aux table to rowids query in vec0_cursor for rowid/point stmts, to avoid N lookup queries