mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1
into sanja.is.com.ua:/home/bell/mysql/bk/work-bug4-5.0 mysql-test/r/func_str.result: Auto merged mysql-test/t/func_str.test: Auto merged sql/item_strfunc.cc: Auto merged
This commit is contained in:
@@ -861,3 +861,18 @@ trackname artistname
|
|||||||
April In Paris Vernon Duke Vernon Duke
|
April In Paris Vernon Duke Vernon Duke
|
||||||
Autumn In New York NULL
|
Autumn In New York NULL
|
||||||
DROP TABLE t1,t2,t3;
|
DROP TABLE t1,t2,t3;
|
||||||
|
create table t1 (b varchar(5));
|
||||||
|
insert t1 values ('ab'), ('abc'), ('abcd'), ('abcde');
|
||||||
|
select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1;
|
||||||
|
b substring(b,1) substring(b,-1) substring(b,-2) substring(b,-3) substring(b,-4) substring(b,-5)
|
||||||
|
ab ab b ab
|
||||||
|
abc abc c bc abc
|
||||||
|
abcd abcd d cd bcd abcd
|
||||||
|
abcde abcde e de cde bcde abcde
|
||||||
|
select * from (select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1) t;
|
||||||
|
b substring(b,1) substring(b,-1) substring(b,-2) substring(b,-3) substring(b,-4) substring(b,-5)
|
||||||
|
ab ab b ab
|
||||||
|
abc abc c bc abc
|
||||||
|
abcd abcd d cd bcd abcd
|
||||||
|
abcde abcde e de cde bcde abcde
|
||||||
|
drop table t1;
|
||||||
|
@@ -599,3 +599,12 @@ SELECT CONCAT_WS(' ', trackname, artistname) trackname, artistname
|
|||||||
WHERE CONCAT_WS(' ', trackname, artistname) LIKE '%In%';
|
WHERE CONCAT_WS(' ', trackname, artistname) LIKE '%In%';
|
||||||
|
|
||||||
DROP TABLE t1,t2,t3;
|
DROP TABLE t1,t2,t3;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Correct length reporting from substring() (BUG#10269)
|
||||||
|
#
|
||||||
|
create table t1 (b varchar(5));
|
||||||
|
insert t1 values ('ab'), ('abc'), ('abcd'), ('abcde');
|
||||||
|
select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1;
|
||||||
|
select * from (select *,substring(b,1),substring(b,-1),substring(b,-2),substring(b,-3),substring(b,-4),substring(b,-5) from t1) t;
|
||||||
|
drop table t1;
|
||||||
|
@@ -1056,7 +1056,8 @@ void Item_func_substr::fix_length_and_dec()
|
|||||||
collation.set(args[0]->collation);
|
collation.set(args[0]->collation);
|
||||||
if (args[1]->const_item())
|
if (args[1]->const_item())
|
||||||
{
|
{
|
||||||
int32 start=(int32) args[1]->val_int()-1;
|
int32 start= (int32) args[1]->val_int();
|
||||||
|
start= (int32)((start < 0) ? max_length + start : start - 1);
|
||||||
if (start < 0 || start >= (int32) max_length)
|
if (start < 0 || start >= (int32) max_length)
|
||||||
max_length=0; /* purecov: inspected */
|
max_length=0; /* purecov: inspected */
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user