You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting/?version=v1.3.0&platform=linux_amd64&extension=duckpgq
123
122
SELECT last_value FROM duckdb.extensions_table_seq;
124
123
last_value
125
124
------------
126
-
10
125
+
8
127
126
(1 row)
128
127
129
128
SELECT * FROM duckdb.query($$ SELECT extension_name, loaded, installed, installed_from FROM duckdb_extensions() WHERE loaded and extension_name != 'jemalloc' $$);
Copy file name to clipboardExpand all lines: test/regression/expected/read_functions.out
+11-13Lines changed: 11 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -416,24 +416,22 @@ LINE 1: SELECT r[q.col]
416
416
^
417
417
-- delta_scan
418
418
SELECT duckdb.install_extension('delta');
419
-
install_extension
420
-
-------------------
421
-
422
-
(1 row)
419
+
ERROR: (PGDuckDB/install_extension_cpp) HTTP Error: Failed to download extension "delta" at URL "http://extensions.duckdb.org/v1.3.0/linux_amd64/delta.duckdb_extension.gz" (HTTP 403)
420
+
Extension "delta" is an existing extension.
423
421
422
+
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting/?version=v1.3.0&platform=linux_amd64&extension=delta
424
423
SELECT count(r['a']) FROM delta_scan('../../data/delta_table') r;
425
-
count
426
-
-------
427
-
100
428
-
(1 row)
424
+
ERROR: (PGDuckDB/CreatePlan) Prepared query returned an error: 'Extension Autoloading Error: An error occurred while trying to automatically install the required extension 'delta':
425
+
Failed to download extension "delta" at URL "http://extensions.duckdb.org/v1.3.0/linux_amd64/delta.duckdb_extension.gz" (HTTP 403)
426
+
Extension "delta" is an existing extension.
429
427
428
+
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting/?version=v1.3.0&platform=linux_amd64&extension=delta
430
429
SELECT * FROM delta_scan('../../data/delta_table') r WHERE (r['a'] = 1 OR r['b'] = 'delta_table_3');
431
-
a | b
432
-
---+---------------
433
-
1 | delta_table_1
434
-
3 | delta_table_3
435
-
(2 rows)
430
+
ERROR: (PGDuckDB/CreatePlan) Prepared query returned an error: 'Extension Autoloading Error: An error occurred while trying to automatically install the required extension 'delta':
431
+
Failed to download extension "delta" at URL "http://extensions.duckdb.org/v1.3.0/linux_amd64/delta.duckdb_extension.gz" (HTTP 403)
432
+
Extension "delta" is an existing extension.
436
433
434
+
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting/?version=v1.3.0&platform=linux_amd64&extension=delta
INSERT INTO ta (a) SELECT generate_series(1, 3); -- failed. DuckDB expects this "INSERT INTO ta (a) FROM generate_series(1, 3)"
490
-
ERROR: (PGDuckDB/Duckdb_ExecCustomScan_Cpp) Conversion Error: Unimplemented type for cast (BIGINT[] -> INTEGER)
514
+
ERROR: (PGDuckDB/Duckdb_ExecCustomScan_Cpp) Conversion Error: Unimplemented type for cast (BIGINT[] -> INTEGER) when casting from source column generate_series
491
515
492
516
LINE 1: INSERT INTO pg_temp.main.ta (a) SELECT generate_series(1, 3) AS generate_series
0 commit comments