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
65a4e276
Commit
65a4e276
authored
Feb 16, 2006
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/mydev/mysql-5.0
into mysql.com:/home/mydev/mysql-5.0-bug8841
parents
86332f43
c5a7bffc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
+10
-9
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+5
-5
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+3
-3
sql/sql_table.cc
sql/sql_table.cc
+2
-1
No files found.
mysql-test/r/innodb.result
View file @
65a4e276
...
...
@@ -1457,16 +1457,16 @@ Error 1146 Table 'test.t4' doesn't exist
checksum table t1, t2, t3, t4;
Table Checksum
test.t1 2948697075
test.t2
3835700799
test.t3
3835700799
test.t2
2948697075
test.t3
2948697075
test.t4 NULL
Warnings:
Error 1146 Table 'test.t4' doesn't exist
checksum table t1, t2, t3, t4 extended;
Table Checksum
test.t1
3092701434
test.t2
3835700799
test.t3
3835700799
test.t1
2948697075
test.t2
2948697075
test.t3
2948697075
test.t4 NULL
Warnings:
Error 1146 Table 'test.t4' doesn't exist
...
...
mysql-test/r/myisam.result
View file @
65a4e276
...
...
@@ -531,14 +531,14 @@ Error 1146 Table 'test.t3' doesn't exist
checksum table t1, t2, t3;
Table Checksum
test.t1 2948697075
test.t2
3092701434
test.t2
2948697075
test.t3 NULL
Warnings:
Error 1146 Table 'test.t3' doesn't exist
checksum table t1, t2, t3 extended;
Table Checksum
test.t1
3092701434
test.t2
3092701434
test.t1
2948697075
test.t2
2948697075
test.t3 NULL
Warnings:
Error 1146 Table 'test.t3' doesn't exist
...
...
sql/sql_table.cc
View file @
65a4e276
...
...
@@ -4218,7 +4218,8 @@ bool mysql_checksum_table(THD *thd, TABLE_LIST *tables, HA_CHECK_OPT *check_opt)
for
(
uint
i
=
0
;
i
<
t
->
s
->
fields
;
i
++
)
{
Field
*
f
=
t
->
field
[
i
];
if
(
f
->
type
()
==
FIELD_TYPE_BLOB
)
if
((
f
->
type
()
==
FIELD_TYPE_BLOB
)
||
(
f
->
type
()
==
MYSQL_TYPE_VARCHAR
))
{
String
tmp
;
f
->
val_str
(
&
tmp
);
...
...
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