囧囧
囧囧
Hi, I am trying to run the demo server locally. However, it fails to start due to a `FileNotFoundError` error. ``` FileNotFoundError: [Errno 2] No such file or directory: '/home/test/sato/topic_model/LDA_cache/type78/model_num-directstr_thr-0_tn-400'...
For current C++ APIs, it is not quite clear which functions may throw an exception and which functions do not throw. It also causes some issue for the client API...
For example: ```python db_path = tmp_path / "test_database_close.kuzu" db1 = kuzu.Database(database_path = db_path, read_only = False) assert not db1.is_closed assert db1._database is not None db2 = kuzu.Database(database_path = db_path, read_only...
## Error handling and memory reuse Our current C API uses the signatures similar to the following examples: ```c kuzu_database* kuzu_database_init(const char* database_path, kuzu_system_config config); kuzu_flat_tuple* kuzu_query_result_get_next(kuzu_query_result* query_result) ``` This...
Since the Java API is encapsulated in `com.kuzudb` package, there is no need to add the `Kuzu` prefix for class names. We should remove it for simplicity.
### Kùzu version v0.5.0 ### What operating system are you using? macOS 12 ### What happened? https://github.com/kuzudb/kuzu/blob/b88aca112024631118b667bbe41441a542347475/src/storage/store/node_group.cpp#L485 The use of `std::views` is not supported by AppleClang 14 toolchain, which is...
### Description We statically link to DuckDB to avoid user having to maually install DuckDB locally, but this is not optimal as now each extension is bundled with its own...
### API All ### Description We should provide a standard escape function to strings similar to https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-escape-string.html. While it does not require escaping strings when using a prepared statement, it...
### Kùzu version v0.4.2 ### What operating system are you using? _No response_ ### What happened? `LOAD FROM "demo-csv/city.csv" RETURN column0, column0;` is throwing the error `Error: Binder exception: Multiple...