Daniël ten Wolde
Daniël ten Wolde
I don't understand how that'd be a Pandas issue. Printing the result of `duckdb.sql("select [1,2,3]").df()` gives the expected result. Doing a similar thing in Pandas: ```python import pandas as pd...
I found this https://github.com/pandas-dev/pandas/issues/48478 which seems related, and if I understand correctly it is their intentional way of writing arrays. Conversely (and out of curiosity), what is the reason DuckDB...
Technically, aliases could also be used in the `except` list, but that seems pretty pointless. `PROPERTIES ARE ALL COLUMNS EXCEPT (id as alias)` At the transformer we currently filter out...
Full test case: ```sql # name: test/sql/path_finding/top_k.test # group: [duckpgq] require duckpgq statement ok CREATE TABLE Student(id BIGINT, name VARCHAR); INSERT INTO Student VALUES (0, 'Daniel'), (1, 'Tavneet'), (2, 'Gabor'),...
At the moment I don't feel this is necessary to support. If a feature request comes up for this I will take another look. Might also revisit this in the...
See [ic2-analyze.txt](https://github.com/cwida/duckpgq-extension/files/14086062/ic2-analyze.txt) I believe the time tracking for the last BLOCKWISE_NL_JOIN is not correct, as 0.00 is not believable in this case
Right now we save the result of the `TransformMatchNode` in `parse_data`, which can only store one node. However, a query can contain more than 1, in which case this method...
- [x] graphalytics-graph500-22.test - [x] ~test_cheapest_path_sf0.1.test~ - [x] ~test_msbfs.test~ - [x] graphalytics-undirected-example.test - [x] test_create_csr.test - [x] test_msbfs_src_dst.test - [ ] snb_bi_20_1.test - [x] ~test_create_csr_large.test~ - [x] ~test_outer_sql.test~ - [x]...
~test_path_length.test blocked by cwida/duckdb-pgq#17~
snb_bi_20_1.test Needs more work. Changed the sf to 0.1 but that has changed the output. Need to verify with Neo4j what the output should be before continuing test_graphblas_graph.test should have...