Alex Garcia

Results 158 issues of Alex Garcia

Spinoff of #2. Instead of storing "metadata" in a separate regular SQLite table, you should be able to store non-vector columns like integers, text, and dates inside the `vss0` virtual...

Would need to distribute two version of `sqlite-vss`: A normal one with CPU support only, and another one with `-DFAISS_ENABLE_GPU=ON`. Also might need to add an option to vss0 column...

The new `regex_capture()` and `regex_captures()` functions are great, but often you have to call `regex_capture()` multiple times to extract different capture group from the same capture. For example: ```sql select...

Using [`.captures_iter`](https://docs.rs/regex/latest/regex/struct.Regex.html#method.captures_iter)

Or a different option name than `nullstr`. Inspired from https://github.com/duckdb/duckdb/pull/11616 ```sql create virtual table temp."student_grades.csv" using csv( nullstr=['None', 'null', '', 'N/A'] ); ``` ```

`select * from temp.label_reader('test_labels.csv') limit 10;`

```sql .load xsv0 create virtual table "students.csv" using csv; select * from "students.csv"; ``` Make `filename=` optional - if the table name is a valid file, then read from there....

https://docs.rs/csv-index/latest/csv_index/index.html