diff options
author | bell@sanja.is.com.ua <> | 2004-05-13 23:47:20 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-05-13 23:47:20 +0300 |
commit | 4c774e0c18069bb93fa1b4f336888c85de5820d1 (patch) | |
tree | cedf6b9de442e03cc92b7d8d36e141e86ceddc58 /mysql-test/r/having.result | |
parent | 0422d559b645e8cea1a13db5d9ef838afd6dc5f7 (diff) | |
download | mariadb-git-4c774e0c18069bb93fa1b4f336888c85de5820d1.tar.gz |
fixed flags of printed query
Diffstat (limited to 'mysql-test/r/having.result')
-rw-r--r-- | mysql-test/r/having.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/having.result b/mysql-test/r/having.result index 7c88776579b..010e86273a2 100644 --- a/mysql-test/r/having.result +++ b/mysql-test/r/having.result @@ -12,7 +12,7 @@ explain extended select count(a) as b from t1 where a=0 having b >=0; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables Warnings: -Note 1003 select high_priority count(test.t1.a) AS `b` from test.t1 where (test.t1.a = 0) having (count(test.t1.a) >= 0) +Note 1003 select count(test.t1.a) AS `b` from test.t1 where (test.t1.a = 0) having (count(test.t1.a) >= 0) drop table t1; CREATE TABLE t1 ( raw_id int(10) NOT NULL default '0', |