Description While renaming variables I think we should be able to simplify the InsertTupleIntoChunk code a bit. In at least two ways: the values array only needs to contain the values that we actually need to output, now it also contains...
Now that we don't need to duckdb_free Simplify InsertTupleIntoChunk … Verified cb18d53 JelteF approved these changes Oct 21, 2024 View reviewed changes View details Y-- merged commit 47ac4ee into main Oct 21, 2024 4 checks passed Y-- deleted the yl/simplify-insert-tuple branch ...
Description While working on #322 it took me a lot of time to grasp how InsertTupleIntoChunk & HeapTupleFetchNextColumnDatum worked. Partially it's because they are doing something relatively complex/clever that requires both DuckDB and ...
95, 75); INSERT INTO pg.inventory (id, name, price, quantity) VALUES (1, 'A', 16.99, 120) ON CONFLICT(id) DO UPDATE SET price = EXCLUDED.price, quantity = EXCLUDED.quantity; SELECT * FROM pg.inventory WHERE id = 1; DROP TABLE IF EXISTS pg.inventory; as cat .\duckdb\test_...
Use ".open FILENAME" to reopen on a persistent database. D create table q (big decimal (38,10)); D insert into q (big ) values (-9999999999999999899999999999.9999999999); Error: Conversion Error: Could not cast value -99999999999999997748809823456034029568.000000 to DECIMAL(38,10) Before you ...