diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:24:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:24:36 +0000 |
commit | 06eaf7232e9a920468c0f8d74dcf2fe8b555501c (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/archive/discover_5438.test | |
parent | Initial commit. (diff) | |
download | mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.tar.xz mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/archive/discover_5438.test')
-rw-r--r-- | mysql-test/suite/archive/discover_5438.test | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/suite/archive/discover_5438.test b/mysql-test/suite/archive/discover_5438.test new file mode 100644 index 00000000..892b9d49 --- /dev/null +++ b/mysql-test/suite/archive/discover_5438.test @@ -0,0 +1,26 @@ +# +# MDEV-5438 - A view can mask a table that supports discovery +# +# in a few places the server was still using !access(path, F_OK) to +# determine whether a table exists +# +source include/have_archive.inc; + +create table t1 (a int) engine=archive; +--error ER_TABLE_EXISTS_ERROR +create view t1 as select "I am a view" as a; +drop table t1; + +create table t1 (a int) engine=archive; +create user foo@bar; +grant select on test.t1 to foo@bar; +drop user foo@bar; +drop table t1; + +create table t1 (a int) engine=archive; +create table t2 (a int); +--error ER_TABLE_EXISTS_ERROR +alter table t2 rename t1; +drop table t2, t1; + + |