mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
After merge fixes
Makefile.am: Added target test-force mysql-test/r/cast.result: Updated results after merge
This commit is contained in:
@ -102,5 +102,10 @@ tags:
|
|||||||
test:
|
test:
|
||||||
cd mysql-test; ./mysql-test-run && ./mysql-test-run --ps-protocol
|
cd mysql-test; ./mysql-test-run && ./mysql-test-run --ps-protocol
|
||||||
|
|
||||||
|
test-force:
|
||||||
|
cd mysql-test; \
|
||||||
|
mysql-test-run --force ;\
|
||||||
|
mysql-test-run --ps-protocol --force
|
||||||
|
|
||||||
# Don't update the files from bitkeeper
|
# Don't update the files from bitkeeper
|
||||||
%::SCCS/s.%
|
%::SCCS/s.%
|
||||||
|
@ -7,6 +7,8 @@ CAST(CAST(1-2 AS UNSIGNED) AS SIGNED INTEGER)
|
|||||||
select CAST('10 ' as unsigned integer);
|
select CAST('10 ' as unsigned integer);
|
||||||
CAST('10 ' as unsigned integer)
|
CAST('10 ' as unsigned integer)
|
||||||
10
|
10
|
||||||
|
Warnings:
|
||||||
|
Warning 1292 Truncated incorrect INTEGER value: '10 '
|
||||||
select cast(-5 as unsigned) | 1, cast(-5 as unsigned) & -1;
|
select cast(-5 as unsigned) | 1, cast(-5 as unsigned) & -1;
|
||||||
cast(-5 as unsigned) | 1 cast(-5 as unsigned) & -1
|
cast(-5 as unsigned) | 1 cast(-5 as unsigned) & -1
|
||||||
18446744073709551611 18446744073709551611
|
18446744073709551611 18446744073709551611
|
||||||
|
Reference in New Issue
Block a user