Marcel Kornacker

Results 26 issues of Marcel Kornacker

Nos is already an extra in pyproject.toml. However, there are several places in the code where nos is imported unconditionally, which means it needs to be installed.

Introduce a layer of subdirectories in order to scale to a very large number of stored media files.

good first issue

Example: Client.create_table('tbl', schema=..., description='test data for ...') Record descriptions for: - tables - views - snapshots - columns

Right now, DataFrame.select() cannot be called multiple times in order to build up the select list incrementally. The same applies to .where() For .where(): allows multiple calls, which get accumulated...

At the moment, when a column is nullable, we supply an implicit default value (null). The user should be able to supply an explicit default value for non-nullable columns, as...

Right now, the only way to insert data is via insert(), which expects an in-memory structure. insert_file(path: str) -> UpdateStatus would accept a path to a file and insert the...

good first issue

This was introduced for some kind of Pandas compatibility, but it appears to be confusing. .select() and .where() serve the same purpose and are easier to distinguish.

good first issue

At the moment, embeddings are only stored in the NN index. It will be easier to replicate the data if it is stored redundantly in the storage table. This will...