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
c29088d2
Commit
c29088d2
authored
Nov 26, 2007
by
istruewing@stella.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge stella.local:/home2/mydev/mysql-5.0-axmrg
into stella.local:/home2/mydev/mysql-5.1-axmrg
parents
1386274a
a7aa2784
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
storage/myisam/mi_packrec.c
storage/myisam/mi_packrec.c
+1
-1
No files found.
mysql-test/t/disabled.def
View file @
c29088d2
...
...
@@ -22,3 +22,4 @@ events_scheduling : Bug#29830 Test case 'events_scheduling' fails on Mac
lowercase_table3 : Bug#32667 lowercase_table3.test reports to error log
rpl_log : Bug#32653: rpl_log.test fails randomly
rpl_view : Bug#32654: rpl_view.test fails randomly
ndb_backup_print : Bug#32357: ndb_backup_print test fails sometimes in pushbuild
storage/myisam/mi_packrec.c
View file @
c29088d2
...
...
@@ -564,7 +564,7 @@ static void fill_quick_table(uint16 *table, uint bits, uint max_bits,
*/
value
|=
(
max_bits
-
bits
)
<<
8
|
IS_CHAR
;
for
(
end
=
table
+
(
uint
)
(((
uint
)
1
<<
bits
)
);
table
<
end
;
table
++
)
for
(
end
=
table
+
(
(
my_ptrdiff_t
)
1
<<
bits
);
table
<
end
;
table
++
)
{
*
table
=
(
uint16
)
value
;
}
...
...
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