mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
A fix (Bug #4878: Service crashes on query execution)
This commit is contained in:
@ -673,3 +673,6 @@ c1 c2
|
||||
2147483647 4294967295
|
||||
-2147483648 0
|
||||
drop table t1;
|
||||
select left(1234, 3) + 0;
|
||||
left(1234, 3) + 0
|
||||
123
|
||||
|
@ -402,3 +402,9 @@ insert into t1 values ('-21474836461','-21474836461');
|
||||
show warnings;
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug #4878: LEFT() in integer/float context
|
||||
#
|
||||
|
||||
select left(1234, 3) + 0;
|
||||
|
Reference in New Issue
Block a user