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
f6282963
Commit
f6282963
authored
Jun 30, 2006
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fixes
parent
2f86009c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
.bzrignore
.bzrignore
+2
-0
include/my_handler.h
include/my_handler.h
+0
-1
mysql-test/r/key.result
mysql-test/r/key.result
+2
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+1
-1
No files found.
.bzrignore
View file @
f6282963
...
...
@@ -1286,3 +1286,5 @@ vio/viotest.cpp
zlib/*.ds?
zlib/*.vcproj
BitKeeper/etc/RESYNC_TREE
mysql-test/r/*.log
scripts/mysql_upgrade_shell
include/my_handler.h
View file @
f6282963
...
...
@@ -18,7 +18,6 @@
#ifndef _my_handler_h
#define _my_handler_h
#include "my_global.h"
#include "my_base.h"
#include "m_ctype.h"
#include "myisampack.h"
...
...
mysql-test/r/key.result
View file @
f6282963
...
...
@@ -341,8 +341,8 @@ i2 int(11) NO UNI
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i1` int(11) NOT NULL
default '0'
,
`i2` int(11) NOT NULL
default '0'
,
`i1` int(11) NOT NULL,
`i2` int(11) NOT NULL,
UNIQUE KEY `i1idx` (`i1`),
UNIQUE KEY `i2idx` (`i2`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
...
sql/ha_ndbcluster.cc
View file @
f6282963
...
...
@@ -6476,7 +6476,7 @@ pthread_handler_t ndb_util_thread_func(void *arg __attribute__((unused)))
(
"Table: %s commit_count: %s rows: %s"
,
share
->
table_name
,
llstr
(
stat
.
commit_count
,
buff
),
llstr
(
stat
.
row_count
,
buff2
));
llstr
(
stat
.
row_count
,
buff2
))
)
;
}
else
{
...
...
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