Corrected merge error in 'mysql-test/r/select.result': two test blocks inserted in wrong order.
This commit is contained in:
parent
4572248a84
commit
76b25fc194
@ -2423,6 +2423,12 @@ ERROR HY000: Incorrect usage of ALL and DISTINCT
|
|||||||
select distinct all * from t1;
|
select distinct all * from t1;
|
||||||
ERROR HY000: Incorrect usage of ALL and DISTINCT
|
ERROR HY000: Incorrect usage of ALL and DISTINCT
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
CREATE TABLE t1 (b BIGINT(20) UNSIGNED NOT NULL, PRIMARY KEY (b));
|
||||||
|
INSERT INTO t1 VALUES (0x8000000000000000);
|
||||||
|
SELECT b FROM t1 WHERE b=0x8000000000000000;
|
||||||
|
b
|
||||||
|
9223372036854775808
|
||||||
|
DROP TABLE t1;
|
||||||
CREATE TABLE t1 (
|
CREATE TABLE t1 (
|
||||||
K2C4 varchar(4) character set latin1 collate latin1_bin NOT NULL default '',
|
K2C4 varchar(4) character set latin1 collate latin1_bin NOT NULL default '',
|
||||||
K4N4 varchar(4) character set latin1 collate latin1_bin NOT NULL default '0000',
|
K4N4 varchar(4) character set latin1 collate latin1_bin NOT NULL default '0000',
|
||||||
@ -2676,9 +2682,3 @@ AND FK_firma_id = 2;
|
|||||||
COUNT(*)
|
COUNT(*)
|
||||||
0
|
0
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (b BIGINT(20) UNSIGNED NOT NULL, PRIMARY KEY (b));
|
|
||||||
INSERT INTO t1 VALUES (0x8000000000000000);
|
|
||||||
SELECT b FROM t1 WHERE b=0x8000000000000000;
|
|
||||||
b
|
|
||||||
9223372036854775808
|
|
||||||
DROP TABLE t1;
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user