Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6dd8772b
Commit
6dd8772b
authored
Jul 18, 2006
by
evgen@moonbone.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge moonbone.local:/home/evgen/bk-trees/mysql-4.1
into moonbone.local:/work/tmp_merge-4.1-opt-mysql
parents
483d0e3b
a8d230c6
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
268 additions
and
25 deletions
+268
-25
mysql-test/r/func_str.result
mysql-test/r/func_str.result
+15
-0
mysql-test/r/innodb_mysql.result
mysql-test/r/innodb_mysql.result
+29
-0
mysql-test/r/odbc.result
mysql-test/r/odbc.result
+11
-0
mysql-test/r/rpl_insert_id.result
mysql-test/r/rpl_insert_id.result
+14
-0
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+33
-0
mysql-test/t/func_str.test
mysql-test/t/func_str.test
+17
-0
mysql-test/t/innodb_mysql.test
mysql-test/t/innodb_mysql.test
+33
-0
mysql-test/t/odbc.test
mysql-test/t/odbc.test
+10
-0
mysql-test/t/rpl_insert_id.test
mysql-test/t/rpl_insert_id.test
+19
-1
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+24
-0
sql/item.h
sql/item.h
+9
-2
sql/item_strfunc.cc
sql/item_strfunc.cc
+21
-18
sql/item_strfunc.h
sql/item_strfunc.h
+1
-0
sql/item_subselect.cc
sql/item_subselect.cc
+2
-1
sql/sql_class.cc
sql/sql_class.cc
+1
-0
sql/sql_class.h
sql/sql_class.h
+3
-0
sql/sql_select.cc
sql/sql_select.cc
+26
-3
No files found.
mysql-test/r/func_str.result
View file @
6dd8772b
...
@@ -1021,4 +1021,19 @@ select * from t1 where f1='test' and (f2= sha("TEST") or f2= sha("test"));
...
@@ -1021,4 +1021,19 @@ select * from t1 where f1='test' and (f2= sha("TEST") or f2= sha("test"));
f1 f2
f1 f2
test a94a8fe5ccb19ba61c4c0873d391e987982fbbd3
test a94a8fe5ccb19ba61c4c0873d391e987982fbbd3
drop table t1;
drop table t1;
CREATE TABLE t1 (a varchar(10));
INSERT INTO t1 VALUES ('abc'), ('xyz');
SELECT a, CONCAT(a,' ',a) AS c FROM t1
HAVING LEFT(c,LENGTH(c)-INSTR(REVERSE(c)," ")) = a;
a c
abc abc abc
xyz xyz xyz
SELECT a, CONCAT(a,' ',a) AS c FROM t1
HAVING LEFT(CONCAT(a,' ',a),
LENGTH(CONCAT(a,' ',a))-
INSTR(REVERSE(CONCAT(a,' ',a))," ")) = a;
a c
abc abc abc
xyz xyz xyz
DROP TABLE t1;
End of 4.1 tests
End of 4.1 tests
mysql-test/r/innodb_mysql.result
View file @
6dd8772b
...
@@ -54,3 +54,32 @@ c.c_id = 218 and expiredate is null;
...
@@ -54,3 +54,32 @@ c.c_id = 218 and expiredate is null;
slai_id
slai_id
12
12
drop table t1, t2;
drop table t1, t2;
CREATE TABLE t1 (a int, b int, KEY b (b)) Engine=InnoDB;
CREATE TABLE t2 (a int, b int, PRIMARY KEY (a,b)) Engine=InnoDB;
CREATE TABLE t3 (a int, b int, c int, PRIMARY KEY (a),
UNIQUE KEY b (b,c), KEY a (a,b,c)) Engine=InnoDB;
INSERT INTO t1 VALUES (1, 1);
INSERT INTO t1 SELECT a + 1, b + 1 FROM t1;
INSERT INTO t1 SELECT a + 2, b + 2 FROM t1;
INSERT INTO t2 VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8);
INSERT INTO t2 SELECT a + 1, b FROM t2;
DELETE FROM t2 WHERE a = 1 AND b < 2;
INSERT INTO t3 VALUES (1,1,1),(2,1,2);
INSERT INTO t3 SELECT a + 2, a + 2, 3 FROM t3;
INSERT INTO t3 SELECT a + 4, a + 4, 3 FROM t3;
SELECT STRAIGHT_JOIN SQL_NO_CACHE t1.b, t1.a FROM t1, t3, t2 WHERE
t3.a = t2.a AND t2.b = t1.a AND t3.b = 1 AND t3.c IN (1, 2)
ORDER BY t1.b LIMIT 2;
b a
1 1
2 2
SELECT STRAIGHT_JOIN SQL_NO_CACHE t1.b, t1.a FROM t1, t3, t2 WHERE
t3.a = t2.a AND t2.b = t1.a AND t3.b = 1 AND t3.c IN (1, 2)
ORDER BY t1.b LIMIT 5;
b a
1 1
2 2
2 2
3 3
3 3
DROP TABLE t1, t2, t3;
mysql-test/r/odbc.result
View file @
6dd8772b
...
@@ -14,3 +14,14 @@ explain select * from t1 where b is null;
...
@@ -14,3 +14,14 @@ explain select * from t1 where b is null;
id select_type table type possible_keys key key_len ref rows Extra
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
drop table t1;
drop table t1;
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (NULL);
SELECT sql_no_cache a, last_insert_id() FROM t1 WHERE a IS NULL;
a last_insert_id()
1 1
SELECT sql_no_cache a, last_insert_id() FROM t1 WHERE a IS NULL;
a last_insert_id()
SELECT sql_no_cache a, last_insert_id() FROM t1;
a last_insert_id()
1 1
DROP TABLE t1;
mysql-test/r/rpl_insert_id.result
View file @
6dd8772b
...
@@ -73,3 +73,17 @@ CREATE TABLE t1 ( a INT UNIQUE );
...
@@ -73,3 +73,17 @@ CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
SET FOREIGN_KEY_CHECKS=0;
INSERT INTO t1 VALUES (1),(1);
INSERT INTO t1 VALUES (1),(1);
ERROR 23000: Duplicate entry '1' for key 1
ERROR 23000: Duplicate entry '1' for key 1
drop table t1;
create table t1(a int auto_increment, key(a));
create table t2(a int);
insert into t1 (a) values (null);
insert into t2 (a) select a from t1 where a is null;
insert into t2 (a) select a from t1 where a is null;
select * from t2;
a
1
select * from t2;
a
1
drop table t1;
drop table t2;
mysql-test/r/subselect.result
View file @
6dd8772b
...
@@ -2835,3 +2835,36 @@ a
...
@@ -2835,3 +2835,36 @@ a
4
4
DROP TABLE t1,t2,t3;
DROP TABLE t1,t2,t3;
purge master logs before (select adddate(current_timestamp(), interval -4 day));
purge master logs before (select adddate(current_timestamp(), interval -4 day));
CREATE TABLE t1 (f1 INT);
CREATE TABLE t2 (f2 INT);
INSERT INTO t1 VALUES (1);
SELECT * FROM t1 WHERE f1 > ALL (SELECT f2 FROM t2);
f1
1
SELECT * FROM t1 WHERE f1 > ALL (SELECT f2 FROM t2 WHERE 1=0);
f1
1
INSERT INTO t2 VALUES (1);
INSERT INTO t2 VALUES (2);
SELECT * FROM t1 WHERE f1 > ALL (SELECT f2 FROM t2 WHERE f2=0);
f1
1
DROP TABLE t1, t2;
select 1 from dual where 1 < any (select 2);
1
1
select 1 from dual where 1 < all (select 2);
1
1
select 1 from dual where 2 > any (select 1);
1
1
select 1 from dual where 2 > all (select 1);
1
1
select 1 from dual where 1 < any (select 2 from dual);
1
1
select 1 from dual where 1 < all (select 2 from dual where 1!=1);
1
1
mysql-test/t/func_str.test
View file @
6dd8772b
...
@@ -681,4 +681,21 @@ select * from t1 where f1='test' and (f2= sha("test") or f2= sha("TEST"));
...
@@ -681,4 +681,21 @@ select * from t1 where f1='test' and (f2= sha("test") or f2= sha("TEST"));
select
*
from
t1
where
f1
=
'test'
and
(
f2
=
sha
(
"TEST"
)
or
f2
=
sha
(
"test"
));
select
*
from
t1
where
f1
=
'test'
and
(
f2
=
sha
(
"TEST"
)
or
f2
=
sha
(
"test"
));
drop
table
t1
;
drop
table
t1
;
#
# Bug#18243: REVERSE changes its argument
#
CREATE
TABLE
t1
(
a
varchar
(
10
));
INSERT
INTO
t1
VALUES
(
'abc'
),
(
'xyz'
);
SELECT
a
,
CONCAT
(
a
,
' '
,
a
)
AS
c
FROM
t1
HAVING
LEFT
(
c
,
LENGTH
(
c
)
-
INSTR
(
REVERSE
(
c
),
" "
))
=
a
;
SELECT
a
,
CONCAT
(
a
,
' '
,
a
)
AS
c
FROM
t1
HAVING
LEFT
(
CONCAT
(
a
,
' '
,
a
),
LENGTH
(
CONCAT
(
a
,
' '
,
a
))
-
INSTR
(
REVERSE
(
CONCAT
(
a
,
' '
,
a
)),
" "
))
=
a
;
DROP
TABLE
t1
;
--
echo
End
of
4.1
tests
--
echo
End
of
4.1
tests
mysql-test/t/innodb_mysql.test
View file @
6dd8772b
...
@@ -57,3 +57,36 @@ where
...
@@ -57,3 +57,36 @@ where
c
.
c_id
=
218
and
expiredate
is
null
;
c
.
c_id
=
218
and
expiredate
is
null
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
#
# Bug#17212: results not sorted correctly by ORDER BY when using index
# (repeatable only w/innodb because of index props)
#
CREATE
TABLE
t1
(
a
int
,
b
int
,
KEY
b
(
b
))
Engine
=
InnoDB
;
CREATE
TABLE
t2
(
a
int
,
b
int
,
PRIMARY
KEY
(
a
,
b
))
Engine
=
InnoDB
;
CREATE
TABLE
t3
(
a
int
,
b
int
,
c
int
,
PRIMARY
KEY
(
a
),
UNIQUE
KEY
b
(
b
,
c
),
KEY
a
(
a
,
b
,
c
))
Engine
=
InnoDB
;
INSERT
INTO
t1
VALUES
(
1
,
1
);
INSERT
INTO
t1
SELECT
a
+
1
,
b
+
1
FROM
t1
;
INSERT
INTO
t1
SELECT
a
+
2
,
b
+
2
FROM
t1
;
INSERT
INTO
t2
VALUES
(
1
,
1
),(
1
,
2
),(
1
,
3
),(
1
,
4
),(
1
,
5
),(
1
,
6
),(
1
,
7
),(
1
,
8
);
INSERT
INTO
t2
SELECT
a
+
1
,
b
FROM
t2
;
DELETE
FROM
t2
WHERE
a
=
1
AND
b
<
2
;
INSERT
INTO
t3
VALUES
(
1
,
1
,
1
),(
2
,
1
,
2
);
INSERT
INTO
t3
SELECT
a
+
2
,
a
+
2
,
3
FROM
t3
;
INSERT
INTO
t3
SELECT
a
+
4
,
a
+
4
,
3
FROM
t3
;
# demonstrate a problem when a must-use-sort table flag
# (sort_by_table=1) is being neglected.
SELECT
STRAIGHT_JOIN
SQL_NO_CACHE
t1
.
b
,
t1
.
a
FROM
t1
,
t3
,
t2
WHERE
t3
.
a
=
t2
.
a
AND
t2
.
b
=
t1
.
a
AND
t3
.
b
=
1
AND
t3
.
c
IN
(
1
,
2
)
ORDER
BY
t1
.
b
LIMIT
2
;
# demonstrate the problem described in the bug report
SELECT
STRAIGHT_JOIN
SQL_NO_CACHE
t1
.
b
,
t1
.
a
FROM
t1
,
t3
,
t2
WHERE
t3
.
a
=
t2
.
a
AND
t2
.
b
=
t1
.
a
AND
t3
.
b
=
1
AND
t3
.
c
IN
(
1
,
2
)
ORDER
BY
t1
.
b
LIMIT
5
;
DROP
TABLE
t1
,
t2
,
t3
;
mysql-test/t/odbc.test
View file @
6dd8772b
...
@@ -21,4 +21,14 @@ select * from t1 where a is null;
...
@@ -21,4 +21,14 @@ select * from t1 where a is null;
explain
select
*
from
t1
where
b
is
null
;
explain
select
*
from
t1
where
b
is
null
;
drop
table
t1
;
drop
table
t1
;
#
# Bug #14553: NULL in WHERE resets LAST_INSERT_ID
#
CREATE
TABLE
t1
(
a
INT
AUTO_INCREMENT
PRIMARY
KEY
);
INSERT
INTO
t1
VALUES
(
NULL
);
SELECT
sql_no_cache
a
,
last_insert_id
()
FROM
t1
WHERE
a
IS
NULL
;
SELECT
sql_no_cache
a
,
last_insert_id
()
FROM
t1
WHERE
a
IS
NULL
;
SELECT
sql_no_cache
a
,
last_insert_id
()
FROM
t1
;
DROP
TABLE
t1
;
# End of 4.1 tests
# End of 4.1 tests
mysql-test/t/rpl_insert_id.test
View file @
6dd8772b
...
@@ -73,5 +73,23 @@ SET FOREIGN_KEY_CHECKS=0;
...
@@ -73,5 +73,23 @@ SET FOREIGN_KEY_CHECKS=0;
--
error
1062
--
error
1062
INSERT
INTO
t1
VALUES
(
1
),(
1
);
INSERT
INTO
t1
VALUES
(
1
),(
1
);
sync_slave_with_master
;
sync_slave_with_master
;
#
# Bug#14553: NULL in WHERE resets LAST_INSERT_ID
#
connection
master
;
drop
table
t1
;
create
table
t1
(
a
int
auto_increment
,
key
(
a
));
create
table
t2
(
a
int
);
insert
into
t1
(
a
)
values
(
null
);
insert
into
t2
(
a
)
select
a
from
t1
where
a
is
null
;
insert
into
t2
(
a
)
select
a
from
t1
where
a
is
null
;
select
*
from
t2
;
sync_slave_with_master
;
connection
slave
;
select
*
from
t2
;
connection
master
;
drop
table
t1
;
drop
table
t2
;
sync_slave_with_master
;
# End of 4.1 tests
# End of 4.1 tests
mysql-test/t/subselect.test
View file @
6dd8772b
...
@@ -1820,4 +1820,28 @@ DROP TABLE t1,t2,t3;
...
@@ -1820,4 +1820,28 @@ DROP TABLE t1,t2,t3;
purge
master
logs
before
(
select
adddate
(
current_timestamp
(),
interval
-
4
day
));
purge
master
logs
before
(
select
adddate
(
current_timestamp
(),
interval
-
4
day
));
#
# Bug#18503: Queries with a quantified subquery returning empty set may
# return a wrong result.
#
CREATE
TABLE
t1
(
f1
INT
);
CREATE
TABLE
t2
(
f2
INT
);
INSERT
INTO
t1
VALUES
(
1
);
SELECT
*
FROM
t1
WHERE
f1
>
ALL
(
SELECT
f2
FROM
t2
);
SELECT
*
FROM
t1
WHERE
f1
>
ALL
(
SELECT
f2
FROM
t2
WHERE
1
=
0
);
INSERT
INTO
t2
VALUES
(
1
);
INSERT
INTO
t2
VALUES
(
2
);
SELECT
*
FROM
t1
WHERE
f1
>
ALL
(
SELECT
f2
FROM
t2
WHERE
f2
=
0
);
DROP
TABLE
t1
,
t2
;
#
# Bug#16302: Quantified subquery without any tables gives wrong results
#
select
1
from
dual
where
1
<
any
(
select
2
);
select
1
from
dual
where
1
<
all
(
select
2
);
select
1
from
dual
where
2
>
any
(
select
1
);
select
1
from
dual
where
2
>
all
(
select
1
);
select
1
from
dual
where
1
<
any
(
select
2
from
dual
);
select
1
from
dual
where
1
<
all
(
select
2
from
dual
where
1
!=
1
);
# End of 4.1 tests
# End of 4.1 tests
sql/item.h
View file @
6dd8772b
...
@@ -275,9 +275,16 @@ public:
...
@@ -275,9 +275,16 @@ public:
Any new item which can be NULL must implement this call.
Any new item which can be NULL must implement this call.
*/
*/
virtual
bool
is_null
()
{
return
0
;
}
virtual
bool
is_null
()
{
return
0
;
}
/*
/*
it is "top level" item of WHERE clause and we do not need correct NULL
Inform the item that there will be no distinction between its result
handling
being FALSE or NULL.
NOTE
This function will be called for eg. Items that are top-level AND-parts
of the WHERE clause. Items implementing this function (currently
Item_cond_and and subquery-related item) enable special optimizations
when they are "top level".
*/
*/
virtual
void
top_level_item
()
{}
virtual
void
top_level_item
()
{}
/*
/*
...
...
sql/item_strfunc.cc
View file @
6dd8772b
...
@@ -709,44 +709,47 @@ String *Item_func_reverse::val_str(String *str)
...
@@ -709,44 +709,47 @@ String *Item_func_reverse::val_str(String *str)
{
{
DBUG_ASSERT
(
fixed
==
1
);
DBUG_ASSERT
(
fixed
==
1
);
String
*
res
=
args
[
0
]
->
val_str
(
str
);
String
*
res
=
args
[
0
]
->
val_str
(
str
);
char
*
ptr
,
*
end
;
char
*
ptr
,
*
end
,
*
tmp
;
if
((
null_value
=
args
[
0
]
->
null_value
))
if
((
null_value
=
args
[
0
]
->
null_value
))
return
0
;
return
0
;
/* An empty string is a special case as the string pointer may be null */
/* An empty string is a special case as the string pointer may be null */
if
(
!
res
->
length
())
if
(
!
res
->
length
())
return
&
my_empty_string
;
return
&
my_empty_string
;
res
=
copy_if_not_alloced
(
str
,
res
,
res
->
length
());
if
(
tmp_value
.
alloced_length
()
<
res
->
length
()
&&
ptr
=
(
char
*
)
res
->
ptr
();
tmp_value
.
realloc
(
res
->
length
()))
end
=
ptr
+
res
->
length
();
{
null_value
=
1
;
return
0
;
}
tmp_value
.
length
(
res
->
length
());
tmp_value
.
set_charset
(
res
->
charset
());
ptr
=
(
char
*
)
res
->
ptr
();
end
=
ptr
+
res
->
length
();
tmp
=
(
char
*
)
tmp_value
.
ptr
()
+
tmp_value
.
length
();
#ifdef USE_MB
#ifdef USE_MB
if
(
use_mb
(
res
->
charset
()))
if
(
use_mb
(
res
->
charset
()))
{
{
String
tmpstr
;
tmpstr
.
copy
(
*
res
);
char
*
tmp
=
(
char
*
)
tmpstr
.
ptr
()
+
tmpstr
.
length
();
register
uint32
l
;
register
uint32
l
;
while
(
ptr
<
end
)
while
(
ptr
<
end
)
{
{
if
((
l
=
my_ismbchar
(
res
->
charset
(),
ptr
,
end
)))
if
((
l
=
my_ismbchar
(
res
->
charset
(),
ptr
,
end
)))
tmp
-=
l
,
memcpy
(
tmp
,
ptr
,
l
),
ptr
+=
l
;
{
tmp
-=
l
;
memcpy
(
tmp
,
ptr
,
l
);
ptr
+=
l
;
}
else
else
*--
tmp
=*
ptr
++
;
*--
tmp
=
*
ptr
++
;
}
}
memcpy
((
char
*
)
res
->
ptr
(),(
char
*
)
tmpstr
.
ptr
(),
res
->
length
());
}
}
else
else
#endif
/* USE_MB */
#endif
/* USE_MB */
{
{
char
tmp
;
while
(
ptr
<
end
)
while
(
ptr
<
end
)
{
*--
tmp
=
*
ptr
++
;
tmp
=*
ptr
;
*
ptr
++=*--
end
;
*
end
=
tmp
;
}
}
}
return
res
;
return
&
tmp_value
;
}
}
...
...
sql/item_strfunc.h
View file @
6dd8772b
...
@@ -100,6 +100,7 @@ public:
...
@@ -100,6 +100,7 @@ public:
class
Item_func_reverse
:
public
Item_str_func
class
Item_func_reverse
:
public
Item_str_func
{
{
String
tmp_value
;
public:
public:
Item_func_reverse
(
Item
*
a
)
:
Item_str_func
(
a
)
{}
Item_func_reverse
(
Item
*
a
)
:
Item_str_func
(
a
)
{}
String
*
val_str
(
String
*
);
String
*
val_str
(
String
*
);
...
...
sql/item_subselect.cc
View file @
6dd8772b
...
@@ -705,7 +705,8 @@ Item_in_subselect::single_value_transformer(JOIN *join,
...
@@ -705,7 +705,8 @@ Item_in_subselect::single_value_transformer(JOIN *join,
if
(
!
select_lex
->
group_list
.
elements
&&
if
(
!
select_lex
->
group_list
.
elements
&&
!
select_lex
->
having
&&
!
select_lex
->
having
&&
!
select_lex
->
with_sum_func
&&
!
select_lex
->
with_sum_func
&&
!
(
select_lex
->
next_select
()))
!
(
select_lex
->
next_select
())
&&
select_lex
->
table_list
.
elements
)
{
{
Item_sum_hybrid
*
item
;
Item_sum_hybrid
*
item
;
if
(
func
->
l_op
())
if
(
func
->
l_op
())
...
...
sql/sql_class.cc
View file @
6dd8772b
...
@@ -265,6 +265,7 @@ THD::THD()
...
@@ -265,6 +265,7 @@ THD::THD()
ulong
tmp
=
sql_rnd_with_mutex
();
ulong
tmp
=
sql_rnd_with_mutex
();
randominit
(
&
rand
,
tmp
+
(
ulong
)
&
rand
,
tmp
+
(
ulong
)
::
query_id
);
randominit
(
&
rand
,
tmp
+
(
ulong
)
&
rand
,
tmp
+
(
ulong
)
::
query_id
);
}
}
substitute_null_with_insert_id
=
FALSE
;
}
}
...
...
sql/sql_class.h
View file @
6dd8772b
...
@@ -896,6 +896,8 @@ public:
...
@@ -896,6 +896,8 @@ public:
bool
last_cuted_field
;
bool
last_cuted_field
;
bool
no_errors
,
password
,
is_fatal_error
;
bool
no_errors
,
password
,
is_fatal_error
;
bool
query_start_used
,
last_insert_id_used
,
insert_id_used
,
rand_used
;
bool
query_start_used
,
last_insert_id_used
,
insert_id_used
,
rand_used
;
/* for IS NULL => = last_insert_id() fix in remove_eq_conds() */
bool
substitute_null_with_insert_id
;
bool
time_zone_used
;
bool
time_zone_used
;
bool
in_lock_tables
;
bool
in_lock_tables
;
bool
query_error
,
bootstrap
,
cleanup_done
;
bool
query_error
,
bootstrap
,
cleanup_done
;
...
@@ -991,6 +993,7 @@ public:
...
@@ -991,6 +993,7 @@ public:
{
{
last_insert_id
=
id_arg
;
last_insert_id
=
id_arg
;
insert_id_used
=
1
;
insert_id_used
=
1
;
substitute_null_with_insert_id
=
TRUE
;
}
}
inline
ulonglong
insert_id
(
void
)
inline
ulonglong
insert_id
(
void
)
{
{
...
...
sql/sql_select.cc
View file @
6dd8772b
...
@@ -3845,6 +3845,7 @@ make_join_readinfo(JOIN *join, uint options)
...
@@ -3845,6 +3845,7 @@ make_join_readinfo(JOIN *join, uint options)
{
{
uint
i
;
uint
i
;
bool
statistics
=
test
(
!
(
join
->
select_options
&
SELECT_DESCRIBE
));
bool
statistics
=
test
(
!
(
join
->
select_options
&
SELECT_DESCRIBE
));
bool
ordered_set
=
0
;
DBUG_ENTER
(
"make_join_readinfo"
);
DBUG_ENTER
(
"make_join_readinfo"
);
for
(
i
=
join
->
const_tables
;
i
<
join
->
tables
;
i
++
)
for
(
i
=
join
->
const_tables
;
i
<
join
->
tables
;
i
++
)
...
@@ -3854,6 +3855,22 @@ make_join_readinfo(JOIN *join, uint options)
...
@@ -3854,6 +3855,22 @@ make_join_readinfo(JOIN *join, uint options)
tab
->
read_record
.
table
=
table
;
tab
->
read_record
.
table
=
table
;
tab
->
read_record
.
file
=
table
->
file
;
tab
->
read_record
.
file
=
table
->
file
;
tab
->
next_select
=
sub_select
;
/* normal select */
tab
->
next_select
=
sub_select
;
/* normal select */
/*
Determine if the set is already ordered for ORDER BY, so it can
disable join cache because it will change the ordering of the results.
Code handles sort table that is at any location (not only first after
the const tables) despite the fact that it's currently prohibited.
*/
if
(
!
ordered_set
&&
(
table
==
join
->
sort_by_table
&&
(
!
join
->
order
||
join
->
skip_sort_order
||
test_if_skip_sort_order
(
tab
,
join
->
order
,
join
->
select_limit
,
1
))
)
||
(
join
->
sort_by_table
==
(
TABLE
*
)
1
&&
i
!=
join
->
const_tables
))
ordered_set
=
1
;
switch
(
tab
->
type
)
{
switch
(
tab
->
type
)
{
case
JT_SYSTEM
:
// Only happens with left join
case
JT_SYSTEM
:
// Only happens with left join
table
->
status
=
STATUS_NO_RECORD
;
table
->
status
=
STATUS_NO_RECORD
;
...
@@ -3924,10 +3941,11 @@ make_join_readinfo(JOIN *join, uint options)
...
@@ -3924,10 +3941,11 @@ make_join_readinfo(JOIN *join, uint options)
case
JT_ALL
:
case
JT_ALL
:
/*
/*
If previous table use cache
If previous table use cache
If the incoming data set is already sorted don't use cache.
*/
*/
table
->
status
=
STATUS_NO_RECORD
;
table
->
status
=
STATUS_NO_RECORD
;
if
(
i
!=
join
->
const_tables
&&
!
(
options
&
SELECT_NO_JOIN_CACHE
)
&&
if
(
i
!=
join
->
const_tables
&&
!
(
options
&
SELECT_NO_JOIN_CACHE
)
&&
tab
->
use_quick
!=
2
&&
!
tab
->
on_expr
)
tab
->
use_quick
!=
2
&&
!
tab
->
on_expr
&&
!
ordered_set
)
{
{
if
((
options
&
SELECT_DESCRIBE
)
||
if
((
options
&
SELECT_DESCRIBE
)
||
!
join_init_cache
(
join
->
thd
,
join
->
join_tab
+
join
->
const_tables
,
!
join_init_cache
(
join
->
thd
,
join
->
join_tab
+
join
->
const_tables
,
...
@@ -4754,7 +4772,7 @@ remove_eq_conds(THD *thd, COND *cond, Item::cond_result *cond_value)
...
@@ -4754,7 +4772,7 @@ remove_eq_conds(THD *thd, COND *cond, Item::cond_result *cond_value)
Field
*
field
=
((
Item_field
*
)
args
[
0
])
->
field
;
Field
*
field
=
((
Item_field
*
)
args
[
0
])
->
field
;
if
(
field
->
flags
&
AUTO_INCREMENT_FLAG
&&
!
field
->
table
->
maybe_null
&&
if
(
field
->
flags
&
AUTO_INCREMENT_FLAG
&&
!
field
->
table
->
maybe_null
&&
(
thd
->
options
&
OPTION_AUTO_IS_NULL
)
&&
(
thd
->
options
&
OPTION_AUTO_IS_NULL
)
&&
thd
->
insert_id
())
thd
->
insert_id
()
&&
thd
->
substitute_null_with_insert_id
)
{
{
#ifdef HAVE_QUERY_CACHE
#ifdef HAVE_QUERY_CACHE
query_cache_abort
(
&
thd
->
net
);
query_cache_abort
(
&
thd
->
net
);
...
@@ -4768,7 +4786,7 @@ remove_eq_conds(THD *thd, COND *cond, Item::cond_result *cond_value)
...
@@ -4768,7 +4786,7 @@ remove_eq_conds(THD *thd, COND *cond, Item::cond_result *cond_value)
cond
=
new_cond
;
cond
=
new_cond
;
cond
->
fix_fields
(
thd
,
0
,
&
cond
);
cond
->
fix_fields
(
thd
,
0
,
&
cond
);
}
}
thd
->
insert_id
(
0
);
// Clear for next request
thd
->
substitute_null_with_insert_id
=
FALSE
;
// Clear for next request
}
}
/* fix to replace 'NULL' dates with '0' (shreeve@uci.edu) */
/* fix to replace 'NULL' dates with '0' (shreeve@uci.edu) */
else
if
(((
field
->
type
()
==
FIELD_TYPE_DATE
)
||
else
if
(((
field
->
type
()
==
FIELD_TYPE_DATE
)
||
...
@@ -6780,8 +6798,13 @@ end_send_group(JOIN *join, JOIN_TAB *join_tab __attribute__((unused)),
...
@@ -6780,8 +6798,13 @@ end_send_group(JOIN *join, JOIN_TAB *join_tab __attribute__((unused)),
{
{
if
(
!
join
->
first_record
)
if
(
!
join
->
first_record
)
{
{
List_iterator_fast
<
Item
>
it
(
*
join
->
fields
);
Item
*
item
;
/* No matching rows for group function */
/* No matching rows for group function */
join
->
clear
();
join
->
clear
();
while
((
item
=
it
++
))
item
->
no_rows_in_result
();
}
}
if
(
join
->
having
&&
join
->
having
->
val_int
()
==
0
)
if
(
join
->
having
&&
join
->
having
->
val_int
()
==
0
)
error
=
-
1
;
// Didn't satisfy having
error
=
-
1
;
// Didn't satisfy having
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment