mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
merge 48888
This commit is contained in:
@ -9477,7 +9477,7 @@ int insert_pointer_name(reg1 POINTER_ARRAY *pa,char * name)
|
|||||||
if (pa->length+length >= pa->max_length)
|
if (pa->length+length >= pa->max_length)
|
||||||
{
|
{
|
||||||
if (!(new_pos= (uchar*) my_realloc((uchar*) pa->str,
|
if (!(new_pos= (uchar*) my_realloc((uchar*) pa->str,
|
||||||
(uint) (pa->max_length+PS_MALLOC),
|
(uint) (pa->length+length+PS_MALLOC),
|
||||||
MYF(MY_WME))))
|
MYF(MY_WME))))
|
||||||
DBUG_RETURN(1);
|
DBUG_RETURN(1);
|
||||||
if (new_pos != pa->str)
|
if (new_pos != pa->str)
|
||||||
@ -9488,7 +9488,7 @@ int insert_pointer_name(reg1 POINTER_ARRAY *pa,char * name)
|
|||||||
char*);
|
char*);
|
||||||
pa->str=new_pos;
|
pa->str=new_pos;
|
||||||
}
|
}
|
||||||
pa->max_length+=PS_MALLOC;
|
pa->max_length= pa->length+length+PS_MALLOC;
|
||||||
}
|
}
|
||||||
if (pa->typelib.count >= pa->max_count-1)
|
if (pa->typelib.count >= pa->max_count-1)
|
||||||
{
|
{
|
||||||
|
@ -421,6 +421,9 @@ mysqltest: At line 1: Wrong number of arguments to replace_column in 'replace_co
|
|||||||
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a b'
|
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a b'
|
||||||
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a 1'
|
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column a 1'
|
||||||
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column 1 b c '
|
mysqltest: At line 1: Wrong column number to replace_column in 'replace_column 1 b c '
|
||||||
|
select "LONG_STRING" as x;
|
||||||
|
x
|
||||||
|
LONG_STRING
|
||||||
mysqltest: At line 1: Invalid integer argument "10!"
|
mysqltest: At line 1: Invalid integer argument "10!"
|
||||||
mysqltest: At line 1: Invalid integer argument "a"
|
mysqltest: At line 1: Invalid integer argument "a"
|
||||||
mysqltest: At line 1: Missing required argument 'connection name' to command 'connect'
|
mysqltest: At line 1: Missing required argument 'connection name' to command 'connect'
|
||||||
|
@ -1316,6 +1316,17 @@ select "a" as col1, "c" as col2;
|
|||||||
--error 1
|
--error 1
|
||||||
--exec echo "--replace_column 1 b c " | $MYSQL_TEST 2>&1
|
--exec echo "--replace_column 1 b c " | $MYSQL_TEST 2>&1
|
||||||
|
|
||||||
|
let $long_rep= 1234567890123456789012345678901234567890;
|
||||||
|
let $long_rep= $long_rep,$long_rep;
|
||||||
|
let $long_rep= $long_rep,$long_rep;
|
||||||
|
let $long_rep= $long_rep,$long_rep;
|
||||||
|
let $long_rep= $long_rep,$long_rep;
|
||||||
|
let $long_rep= $long_rep,$long_rep;
|
||||||
|
|
||||||
|
# This tests from strings > 1024 (here 1311)
|
||||||
|
|
||||||
|
--replace_result $long_rep LONG_STRING
|
||||||
|
eval select "$long_rep" as x;
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
# Test sync_with_master
|
# Test sync_with_master
|
||||||
|
Reference in New Issue
Block a user