1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
# name: test/sql/attach/attach_did_you_mean.test
# description: The error messages that suggest possible alternative mixed with ATTACH
# group: [attach]
statement ok
ATTACH DATABASE ':memory:' AS db1;
# did you mean errors with an attached database
statement ok
CREATE TABLE hello(i INTEGER);
statement ok
CREATE TABLE db1.test(a INTEGER);
statement error
SELECT * FROM test;
----
Did you mean "db1.test"
statement ok
CREATE SCHEMA db1.myschema
statement ok
CREATE TABLE db1.myschema.blablabla(i INTEGER)
statement error
SELECT * FROM blablabla;
----
Did you mean "db1.myschema.blablabla"
statement ok
SET catalog_error_max_schemas=0
# did you mean... error is skipped if max schemas is set to 0
statement error
SELECT * FROM blablabla;
----
Table with name blablabla does not exist
statement ok
RESET catalog_error_max_schemas
# what if we switch the default database?
statement ok
USE db1
statement ok
SELECT * FROM test
statement error
SELECT * FROM blablabla
----
Did you mean "myschema.blablabla"
statement ok
SELECT * FROM myschema.blablabla
statement error
SELECT * FROM hello;
----
Did you mean "memory.hello"
statement ok
SELECT * FROM memory.hello
# what if we switch default database AND default schema?
statement ok
USE db1.myschema
statement ok
SELECT * FROM blablabla
statement ok
SELECT * FROM test;
statement ok
SELECT * FROM db1.main.test
statement error
SELECT * FROM hello;
----
Did you mean "memory.hello"
|