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
e96234aa
Commit
e96234aa
authored
Nov 19, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed another small bug with LIMIT )
parent
a629adc6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
mysql-test/r/select_found.result
mysql-test/r/select_found.result
+5
-0
mysql-test/t/select_found.test
mysql-test/t/select_found.test
+2
-0
sql/sql_select.cc
sql/sql_select.cc
+1
-1
No files found.
mysql-test/r/select_found.result
View file @
e96234aa
...
...
@@ -183,4 +183,9 @@ titre numeropost maxnumrep
SELECT FOUND_ROWS();
FOUND_ROWS()
3
SELECT SQL_CALC_FOUND_ROWS * FROM t1 ORDER BY numeropost LIMIT 0;
titre numeropost maxnumrep
SELECT FOUND_ROWS();
FOUND_ROWS()
3
drop table t1;
mysql-test/t/select_found.test
View file @
e96234aa
...
...
@@ -90,4 +90,6 @@ SELECT SQL_CALC_FOUND_ROWS * FROM t1 WHERE numeropost > 1 LIMIT 0;
SELECT
FOUND_ROWS
();
SELECT
SQL_CALC_FOUND_ROWS
*
FROM
t1
LIMIT
0
;
SELECT
FOUND_ROWS
();
SELECT
SQL_CALC_FOUND_ROWS
*
FROM
t1
ORDER
BY
numeropost
LIMIT
0
;
SELECT
FOUND_ROWS
();
drop
table
t1
;
sql/sql_select.cc
View file @
e96234aa
...
...
@@ -324,7 +324,7 @@ JOIN::prepare(TABLE_LIST *tables_init,
this
->
group
=
group_list
!=
0
;
row_limit
=
((
select_distinct
||
order
||
group_list
)
?
HA_POS_ERROR
:
unit
->
select_limit_cnt
);
do_send_rows
=
(
row_limi
t
)
?
1
:
0
;
do_send_rows
=
(
unit
->
select_limit_cn
t
)
?
1
:
0
;
this
->
unit
=
unit
;
#ifdef RESTRICTED_GROUP
...
...
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