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
38787c5d
Commit
38787c5d
authored
Nov 06, 2002
by
bell@sanja.is.com.ua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup & fixing possible bug in select's error handling
parent
e34e82d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
sql/sql_select.cc
sql/sql_select.cc
+4
-6
No files found.
sql/sql_select.cc
View file @
38787c5d
...
...
@@ -444,7 +444,7 @@ JOIN::optimize()
best_read
>
(
double
)
thd
->
variables
.
max_join_size
&&
!
(
select_options
&
SELECT_DESCRIBE
))
{
/* purecov: inspected */
result
->
send_error
(
ER_TOO_BIG_SELECT
,
ER
(
ER_TOO_BIG_SELECT
));
/* purecov: inspected */
my_message
(
ER_TOO_BIG_SELECT
,
ER
(
ER_TOO_BIG_SELECT
),
MYF
(
0
));
error
=
1
;
/* purecov: inspected */
DBUG_RETURN
(
-
1
);
}
...
...
@@ -670,10 +670,7 @@ JOIN::exec()
if
(
!
having
||
having
->
val_int
())
{
if
(
do_send_rows
&&
result
->
send_data
(
fields_list
))
{
result
->
send_error
(
0
,
NullS
);
/* purecov: inspected */
error
=
1
;
}
else
error
=
(
int
)
result
->
send_eof
();
}
...
...
@@ -1092,12 +1089,13 @@ mysql_select(THD *thd, TABLE_LIST *tables, List<Item> &fields, COND *conds,
thd
->
limit_found_rows
=
join
->
send_records
;
thd
->
examined_row_count
=
join
->
examined_rows
;
thd
->
proc_info
=
"end"
;
int
error
=
(
fake_select_lex
?
0
:
join
->
cleanup
(
thd
))
||
thd
->
net
.
report_error
;
int
error
=
(
fake_select_lex
?
join
->
error
:
join
->
cleanup
(
thd
))
||
thd
->
net
.
report_error
;
delete
join
;
DBUG_RETURN
(
error
);
}
else
DBUG_RETURN
(
0
);
DBUG_RETURN
(
join
->
error
);
}
/*****************************************************************************
...
...
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