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,22 @@
# name: test/sql/attach/attach_schema.test
# description: Test various DDL statements on an attached database
# group: [attach]
statement ok
PRAGMA enable_verification
statement ok
ATTACH DATABASE ':memory:' AS new_database;
statement error
CREATE SCHEMA new_database.s1.xxx;
----
too many dots
statement error
CREATE SCHEMA IF NOT EXISTS new_database.s1.xxx;
----
too many dots
statement ok
CREATE SCHEMA new_database.s1;