Artjoms Iskovs

Results 29 issues of Artjoms Iskovs

If the GET API receives an unhashed SQL query in the URL (e.g. just urlencoded), hash it and redirect the user to the hashed endpoint), as per https://github.com/splitgraph/seafowl/issues/20#issuecomment-1204130690 Need to...

When using an S3-compatible object store, DataFusion / Seafowl currently download the object every time they need to scan through it. We should let users dedicate some scratch space on...

Currently, when writing data: - we create a region for every partition of the original plan (a row in the `physical_region` table in the database) - the region has a...

priority:P2

https://github.com/splitgraph/seafowl/blob/main/src/context.rs#L1090-L1091 Currently, the Parquet file doesn't seem to store min-max values for utf-8 and probably other (like timestamp) columns.

priority:P2

https://github.com/splitgraph/seafowl/blob/f00efc451aaa80a818b42e5d0be72efe39f3f50c/migrations/20220705072248_create_tables.up.sql Make sure that, when we need to, we can migrate: - the table storage format (e.g. tag a table with "v1" and let users upgrade the table) - region...

priority:P1

This can be done without changing the Parquet files (the query engine right now can handle Parquet files with missing columns and pads them with NULLs)

For example: ```bash sgr csv import -s year -s commodity_code […] ``` Or even being able to pass the type as well (select the column and give it a type):...