diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/main/keyread.result | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/main/keyread.result')
-rw-r--r-- | mysql-test/main/keyread.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/main/keyread.result b/mysql-test/main/keyread.result new file mode 100644 index 00000000000..d8e9659d4bb --- /dev/null +++ b/mysql-test/main/keyread.result @@ -0,0 +1,6 @@ +create table t1 (f1 int not null, f2 int, f3 int, primary key (f1,f2), key(f2,f3)) engine=innodb; +create view v1 as select * from t1 where f2 = 1; +select distinct f1 from v1; +f1 +drop view v1; +drop table t1; |