diff options
author | Igor Babaev <igor@askmonty.org> | 2017-11-01 21:42:26 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2017-11-01 21:42:26 -0700 |
commit | 6f1b6061d8e7aa867970c6827e6737c35ee8a254 (patch) | |
tree | 412e4263ad9a6f3d06736f59187fd8759c266f88 /mysql-test/t/func_misc.test | |
parent | 613dd62a76b51df38b96e36bce5bd8b7be2ca73a (diff) | |
parent | 34737e0cee5cd101a23c19d1f30b872a45393382 (diff) | |
download | mariadb-git-6f1b6061d8e7aa867970c6827e6737c35ee8a254.tar.gz |
Merge remote-tracking branch 'shagalla/10.3-mdev12172' into 10.3
As a result of this merge the code for the following tasks appears in 10.3:
- MDEV-12172 Implement tables specified by table value constructors
- MDEV-12176 Transform [NOT] IN predicate with long list of values INTO
[NOT] IN subquery.
Diffstat (limited to 'mysql-test/t/func_misc.test')
-rw-r--r-- | mysql-test/t/func_misc.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/func_misc.test b/mysql-test/t/func_misc.test index ac983048129..ebfdced802b 100644 --- a/mysql-test/t/func_misc.test +++ b/mysql-test/t/func_misc.test @@ -316,7 +316,7 @@ CREATE TABLE t1 (a INT, b INT) ENGINE=MyISAM; INSERT INTO t1 VALUES (1,10); CREATE VIEW v1 AS SELECT * FROM t1; -EXPLAIN EXTENDED SELECT VALUES(b) FROM v1; +EXPLAIN EXTENDED SELECT VALUE(b) FROM v1; drop view v1; drop table t1; |