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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
8a6f8201
Commit
8a6f8201
authored
Aug 27, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merge fixes
sql/sql_lex.h: Auto merged sql/sql_select.cc: Auto merged
parents
8e8e4fe0
76438bd1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
55 additions
and
46 deletions
+55
-46
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+0
-2
mysql-test/r/union.result
mysql-test/r/union.result
+1
-1
sql/sql_lex.h
sql/sql_lex.h
+2
-2
sql/sql_select.cc
sql/sql_select.cc
+3
-2
sql/sql_union.cc
sql/sql_union.cc
+49
-39
No files found.
mysql-test/r/symlink.result
View file @
8a6f8201
...
...
@@ -46,8 +46,6 @@ alter table t8 rename t7;
rename table t7 to t9;
drop table t1;
Got one of the listed errors
Warnings:
Note 1008 Can't drop database 'test_mysqltest'; database doesn't exist
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
...
...
mysql-test/r/union.result
View file @
8a6f8201
...
...
@@ -103,7 +103,7 @@ a b
2 b
select found_rows();
found_rows()
6
8
explain select a,b from t1 union all select a,b from t2;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 4
...
...
sql/sql_lex.h
View file @
8a6f8201
...
...
@@ -272,8 +272,8 @@ class st_select_lex_unit: public st_select_lex_node {
select_result
*
result
;
int
res
;
bool
describe
,
found_rows_for_union
,
prepared
,
// prepare phase already performed for UNION (unit)
ulong
describe
,
found_rows_for_union
;
bool
prepared
,
// prepare phase already performed for UNION (unit)
optimized
,
// optimize phase already performed for UNION (unit)
executed
,
// already executed
t_and_f
;
// used for transferring tables_and_fields_initied UNIT:: methods
...
...
sql/sql_select.cc
View file @
8a6f8201
...
...
@@ -1043,6 +1043,7 @@ JOIN::exec()
DBUG_ENTER
(
"JOIN::exec"
);
error
=
0
;
thd
->
limit_found_rows
=
thd
->
examined_row_count
=
0
;
if
(
procedure
)
{
if
(
procedure
->
change_columns
(
fields_list
)
||
...
...
@@ -1425,6 +1426,8 @@ JOIN::exec()
thd
->
proc_info
=
"Sending data"
;
error
=
thd
->
net
.
report_error
||
do_select
(
curr_join
,
curr_fields_list
,
NULL
,
procedure
);
thd
->
limit_found_rows
=
curr_join
->
send_records
;
thd
->
examined_row_count
=
curr_join
->
examined_rows
;
DBUG_VOID_RETURN
;
}
...
...
@@ -1547,8 +1550,6 @@ mysql_select(THD *thd, Item ***rref_pointer_array,
(
join
->
tmp_join
->
error
=
join
->
error
,
join
->
tmp_join
)
:
join
);
thd
->
limit_found_rows
=
curr_join
->
send_records
;
thd
->
examined_row_count
=
curr_join
->
examined_rows
;
thd
->
proc_info
=
"end"
;
err
=
join
->
cleanup
();
if
(
thd
->
net
.
report_error
)
...
...
sql/sql_union.cc
View file @
8a6f8201
...
...
@@ -185,6 +185,8 @@ int st_select_lex_unit::prepare(THD *thd, select_result *sel_result,
union_result
->
not_describe
=
1
;
union_result
->
tmp_table_param
=
tmp_table_param
;
for
(
SELECT_LEX
*
sl
=
select_cursor
;
sl
;
sl
=
sl
->
next_select
())
{
for
(
SELECT_LEX
*
sl
=
select_cursor
;
sl
;
sl
=
sl
->
next_select
())
{
JOIN
*
join
=
new
JOIN
(
thd
,
sl
->
item_list
,
...
...
@@ -195,7 +197,7 @@ int st_select_lex_unit::prepare(THD *thd, select_result *sel_result,
select_limit_cnt
=
sl
->
select_limit
+
sl
->
offset_limit
;
if
(
select_limit_cnt
<
sl
->
select_limit
)
select_limit_cnt
=
HA_POS_ERROR
;
// no limit
if
(
select_limit_cnt
==
HA_POS_ERROR
&&
!
sl
->
braces
)
if
(
select_limit_cnt
==
HA_POS_ERROR
||
sl
->
braces
)
sl
->
options
&=
~
OPTION_FOUND_ROWS
;
res
=
join
->
prepare
(
&
sl
->
ref_pointer_array
,
...
...
@@ -213,6 +215,7 @@ int st_select_lex_unit::prepare(THD *thd, select_result *sel_result,
if
(
res
||
thd
->
is_fatal_error
)
goto
err
;
}
}
item_list
.
empty
();
thd
->
lex
.
current_select
=
lex_select_save
;
...
...
@@ -267,12 +270,15 @@ int st_select_lex_unit::exec()
select_limit_cnt
=
sl
->
select_limit
+
sl
->
offset_limit
;
if
(
select_limit_cnt
<
sl
->
select_limit
)
select_limit_cnt
=
HA_POS_ERROR
;
// no limit
if
(
select_limit_cnt
==
HA_POS_ERROR
)
if
(
select_limit_cnt
==
HA_POS_ERROR
||
sl
->
braces
)
sl
->
options
&=
~
OPTION_FOUND_ROWS
;
else
if
(
found_rows_for_union
)
else
{
rows
=
sl
->
select_limit
;
sl
->
options
|=
OPTION_FOUND_ROWS
;
/*
We are doing an union without braces. In this case
SQL_CALC_FOUND_ROWS should be done on all sub parts
*/
sl
->
options
|=
found_rows_for_union
;
}
/*
...
...
@@ -301,6 +307,7 @@ int st_select_lex_unit::exec()
}
if
(
!
res
)
{
records_at_start
=
table
->
file
->
records
;
sl
->
join
->
exec
();
res
=
sl
->
join
->
error
;
if
(
!
res
&&
union_result
->
flush
())
...
...
@@ -314,10 +321,17 @@ int st_select_lex_unit::exec()
thd
->
lex
.
current_select
=
lex_select_save
;
DBUG_RETURN
(
res
);
}
if
(
found_rows_for_union
&&
!
sl
->
braces
&&
(
sl
->
options
&
OPTION_FOUND_ROWS
))
add_rows
+=
(
sl
->
join
->
send_records
>
rows
)
?
sl
->
join
->
send_records
-
rows
:
0
;
if
(
found_rows_for_union
&
sl
->
options
)
{
/*
This is a union without braces. Remember the number of rows that could
also have been part of the result set.
We get this from the difference of between total number of possible
rows and actual rows added to the temporary table.
*/
add_rows
+=
(
ulonglong
)
(
thd
->
limit_found_rows
-
(
table
->
file
->
records
-
records_at_start
));
}
}
}
optimized
=
1
;
...
...
@@ -382,12 +396,8 @@ int st_select_lex_unit::exec()
(
ORDER
*
)
NULL
,
NULL
,
(
ORDER
*
)
NULL
,
options
|
SELECT_NO_UNLOCK
,
result
,
this
,
fake_select_lex
,
0
);
if
(
found_rows_for_union
&&
!
res
)
{
thd
->
limit_found_rows
=
table
->
file
->
records
;
if
(
!
select_cursor
->
braces
)
thd
->
limit_found_rows
+=
add_rows
;
}
if
(
!
res
)
thd
->
limit_found_rows
=
(
ulonglong
)
table
->
file
->
records
+
add_rows
;
/*
Mark for slow query log if any of the union parts didn't use
indexes efficiently
...
...
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