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
b0a89319
Commit
b0a89319
authored
Aug 30, 2003
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two small fixes
parent
8f39fb9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
10 deletions
+2
-10
mysql-test/r/isam.result
mysql-test/r/isam.result
+0
-8
sql/sql_union.cc
sql/sql_union.cc
+2
-2
No files found.
mysql-test/r/isam.result
View file @
b0a89319
drop table if exists t1,t2;
drop table if exists t1,t2;
create table t1 (a tinyint not null auto_increment, b blob not null, primary key (a)) type=isam;
create table t1 (a tinyint not null auto_increment, b blob not null, primary key (a)) type=isam;
Warnings:
Warning 1263 Data truncated for column 'b' at row 1
Warnings:
Warning 1263 Data truncated for column 'b' at row 1
Warnings:
Warning 1263 Data truncated for column 'b' at row 1
Warnings:
Warning 1263 Data truncated for column 'b' at row 1
delete from t1 where (a & 1);
delete from t1 where (a & 1);
select sum(length(b)) from t1;
select sum(length(b)) from t1;
sum(length(b))
sum(length(b))
...
...
sql/sql_union.cc
View file @
b0a89319
...
@@ -326,8 +326,8 @@ int st_select_lex_unit::exec()
...
@@ -326,8 +326,8 @@ int st_select_lex_unit::exec()
We get this from the difference of between total number of possible
We get this from the difference of between total number of possible
rows and actual rows added to the temporary table.
rows and actual rows added to the temporary table.
*/
*/
add_rows
+=
(
ulonglong
)
(
thd
->
limit_found_rows
-
(
table
->
file
->
records
-
add_rows
+=
(
ha_rows
)
(
thd
->
limit_found_rows
-
(
ulonglong
)
records_at_start
));
((
table
->
file
->
records
-
records_at_start
)
));
}
}
}
}
}
}
...
...
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