mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Adjusted test results after the fix for MDEV-20411 (2)
This commit is contained in:
@ -4054,11 +4054,11 @@ CREATE VIEW v1 or REPLACE AS Select * from tb2 my_table;
|
|||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'or REPLACE AS Select * from tb2 my_table' at line 1
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'or REPLACE AS Select * from tb2 my_table' at line 1
|
||||||
CREATE VIEW v1 WITH CASCADED CHECK OPTION AS Select *
|
CREATE VIEW v1 WITH CASCADED CHECK OPTION AS Select *
|
||||||
from tb2 my_table limit 50;
|
from tb2 my_table limit 50;
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CASCADED CHECK OPTION AS Select *
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WITH CASCADED CHECK OPTION AS Select *
|
||||||
from tb2 my_table limit 50' at line 1
|
from tb2 my_table limit 50' at line 1
|
||||||
CREATE VIEW v1 WITH LOCAL CHECK OPTION AS Select *
|
CREATE VIEW v1 WITH LOCAL CHECK OPTION AS Select *
|
||||||
from tb2 my_table limit 50;
|
from tb2 my_table limit 50;
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LOCAL CHECK OPTION AS Select *
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WITH LOCAL CHECK OPTION AS Select *
|
||||||
from tb2 my_table limit 50' at line 1
|
from tb2 my_table limit 50' at line 1
|
||||||
SELECT * FROM tb2 my_table CREATE VIEW As v1;
|
SELECT * FROM tb2 my_table CREATE VIEW As v1;
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CREATE VIEW As v1' at line 1
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CREATE VIEW As v1' at line 1
|
||||||
@ -4088,7 +4088,7 @@ FROM test.tb2 my_table CHECK OPTION WITH CASCADED;
|
|||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CHECK OPTION WITH CASCADED' at line 2
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CHECK OPTION WITH CASCADED' at line 2
|
||||||
CREATE OR REPLACE VIEW v1 WITH CASCADED CHECK OPTION
|
CREATE OR REPLACE VIEW v1 WITH CASCADED CHECK OPTION
|
||||||
AS SELECT F59, F60 FROM test.tb2 my_table;
|
AS SELECT F59, F60 FROM test.tb2 my_table;
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CASCADED CHECK OPTION
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WITH CASCADED CHECK OPTION
|
||||||
AS SELECT F59, F60 FROM test.tb2 my_table' at line 1
|
AS SELECT F59, F60 FROM test.tb2 my_table' at line 1
|
||||||
CREATE OR REPLACE AS SELECT F59, F60
|
CREATE OR REPLACE AS SELECT F59, F60
|
||||||
FROM test.tb2 my_table VIEW v1 WITH CASCADED CHECK OPTION;
|
FROM test.tb2 my_table VIEW v1 WITH CASCADED CHECK OPTION;
|
||||||
@ -4117,7 +4117,7 @@ FROM test.tb2 my_table CHECK OPTION WITH LOCAL;
|
|||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CHECK OPTION WITH LOCAL' at line 2
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CHECK OPTION WITH LOCAL' at line 2
|
||||||
CREATE OR REPLACE VIEW v1 WITH CASCADED CHECK OPTION
|
CREATE OR REPLACE VIEW v1 WITH CASCADED CHECK OPTION
|
||||||
AS SELECT F59, F60 FROM test.tb2 my_table;
|
AS SELECT F59, F60 FROM test.tb2 my_table;
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'CASCADED CHECK OPTION
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WITH CASCADED CHECK OPTION
|
||||||
AS SELECT F59, F60 FROM test.tb2 my_table' at line 1
|
AS SELECT F59, F60 FROM test.tb2 my_table' at line 1
|
||||||
CREATE OR REPLACE AS SELECT F59, F60
|
CREATE OR REPLACE AS SELECT F59, F60
|
||||||
FROM test.tb2 my_table VIEW v1 WITH LOCAL CHECK OPTION;
|
FROM test.tb2 my_table VIEW v1 WITH LOCAL CHECK OPTION;
|
||||||
|
Reference in New Issue
Block a user