should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# name: test/sql/storage/extensions/extension_default.test
# description: Store default values that rely on extension functions
# group: [extensions]
# load the DB from disk
load __TEST_DIR__/views_with_extensions.db
statement ok
CREATE TABLE t1(v VARCHAR DEFAULT CURRENT_SCHEMA())
restart
statement ok
INSERT INTO t1 VALUES (DEFAULT)
query I
SELECT * FROM t1;
----
main

View File

@@ -0,0 +1,16 @@
# name: test/sql/storage/extensions/extension_views.test
# description: Store views that rely on extension functions
# group: [extensions]
# load the DB from disk
load __TEST_DIR__/views_with_extensions.db
statement ok
CREATE VIEW v1 AS SELECT current_schema();
restart
query I
SELECT * FROM v1;
----
main