ruby-duckdb
ruby-duckdb copied to clipboard
Ruby binding for DuckDB
Can you please add an example of using this with Ruby-on-Rails ActiveRecord to README, if it supports the ActiveRecord ORM?
Some small suggestions. Feel free to disregard.
Hello, and thanks for this implementation. Are there any plans to make the installation process more standard and streamlined? I imagine the `sqlite3` gem is a good baseline example, with...
Work in progress for using data chunks / vector API rather than the C-APIs "get_value" functions. The only way to get "composite" types is to use the "Data Chunks" API...
This is a repro case for issues #492 and #493 - In the event that you are able to fix these before I get to them, then ... awesome.
fix the following test https://github.com/suketa/ruby-duckdb/blob/d07b4f7886547d79a85eb45c6b0ae026aa3ab2fa/test/duckdb_test/result_chunk_each_test.rb#L44
fix the following test. map result is always empty Hash object. https://github.com/suketa/ruby-duckdb/blob/d07b4f7886547d79a85eb45c6b0ae026aa3ab2fa/test/duckdb_test/result_chunk_each_test.rb#L43
Minimal Repro Case: ```bash duckdb test.duckdb ``` ```sql create table test3 (list INT[], list2 INT[][]) insert into test3 values ([1,2], [[1,2]]) select * from test3; ``` Meanwhile in ruby: ```ruby...