diff options
author | Sergey Petrunia <psergey@askmonty.org> | 2009-06-17 09:27:39 +0400 |
---|---|---|
committer | Sergey Petrunia <psergey@askmonty.org> | 2009-06-17 09:27:39 +0400 |
commit | 7a9f45c6d5fc90a18c44e52ddd147e95fdacc264 (patch) | |
tree | b99c100f9cae7087349d831db3459bc9638a7331 /mysql-test/r/select.result | |
parent | c0103f705ca8cb0600adecb1abc02d9ea210ccdb (diff) | |
download | mariadb-git-7a9f45c6d5fc90a18c44e52ddd147e95fdacc264.tar.gz |
* Use excessive parentheses to stop compiler warning
* Fix test results to account for changes in previous cset
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 0771c7fb370..1dcc1cb54d1 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -3585,7 +3585,6 @@ INSERT INTO t2 VALUES (1,'a'),(2,'b'),(3,'c'); EXPLAIN SELECT t1.a FROM t1 LEFT JOIN t2 ON t2.b=t1.b WHERE t1.a=3; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 const PRIMARY PRIMARY 4 const 1 -1 SIMPLE t2 const b b 22 const 1 Using index DROP TABLE t1,t2; CREATE TABLE t1(id int PRIMARY KEY, b int, e int); CREATE TABLE t2(i int, a int, INDEX si(i), INDEX ai(a)); |