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
match="Permission Error: File system LocalFileSystem has been disabled by configuration",
20
19
):
21
20
cur.sql(
22
-
"SELECT * FROM duckdb.raw_query($$ INSTALL duckpgq FROM community; $$)"
21
+
"SELECT * FROM duckdb.raw_query($$ INSTALL prql FROM community; $$)"
23
22
)
24
23
25
24
# Even if such community extensions somehow get installed, it's not possible
26
25
# to load them without changing allow_community_extensions. Not even for a
27
26
# superuser.
28
27
withpg.cur() ascur:
29
28
cur.sql("SET duckdb.force_execution = false")
30
-
cur.sql("SELECT * FROM duckdb.raw_query($$ INSTALL duckpgq FROM community; $$)")
29
+
cur.sql("SELECT * FROM duckdb.raw_query($$ INSTALL prql FROM community; $$)")
31
30
withpytest.raises(
32
31
Exception,
33
32
match="IO Error: Extension .* could not be loaded because its signature is either missing or invalid and unsigned extensions are disabled by configuration",
34
33
):
35
-
cur.sql("SELECT * FROM duckdb.raw_query($$ LOAD duckpgq; $$)")
34
+
cur.sql("SELECT * FROM duckdb.raw_query($$ LOAD prql; $$)")
36
35
37
36
# But it should be possible to load them after changing that setting.
For more info, visit https://duckdb.org/docs/stable/extensions/troubleshooting/?version=v1.3.0&platform=linux_amd64&extension=duckpgq
122
123
SELECT last_value FROM duckdb.extensions_table_seq;
123
124
last_value
124
125
------------
125
-
8
126
+
10
126
127
(1 row)
127
128
128
129
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/sql/extensions.sql
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ SELECT last_value FROM duckdb.extensions_table_seq;
40
40
41
41
SELECT*FROMduckdb.query($$ SELECT extension_name, loaded, installed, installed_from FROM duckdb_extensions() WHERE loaded and extension_name !='jemalloc' $$);
0 commit comments