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
436e7a2d
Commit
436e7a2d
authored
Jul 14, 2006
by
kostja@bodhi.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes.
parent
d7845b74
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
12 deletions
+4
-12
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+1
-6
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-4
sql/item.cc
sql/item.cc
+0
-1
sql/item_xmlfunc.cc
sql/item_xmlfunc.cc
+1
-1
No files found.
mysql-test/mysql-test-run.sh
View file @
436e7a2d
...
@@ -2178,12 +2178,7 @@ then
...
@@ -2178,12 +2178,7 @@ then
USE_NDBCLUSTER_OPT
=
USE_NDBCLUSTER_OPT
=
fi
fi
# Do not automagically start daemons if we are in gdb or running only one
# test case
if
[
-z
"
$DO_GDB
"
]
&&
[
-z
"
$DO_DDD
"
]
then
mysql_start
mysql_start
fi
$ECHO
"Loading Standard Test Databases"
$ECHO
"Loading Standard Test Databases"
mysql_loadstd
mysql_loadstd
fi
fi
...
...
sql/ha_ndbcluster.cc
View file @
436e7a2d
...
@@ -7417,15 +7417,13 @@ int
...
@@ -7417,15 +7417,13 @@ int
ndb_get_table_statistics
(
Ndb
*
ndb
,
const
NDBTAB
*
ndbtab
,
ndb_get_table_statistics
(
Ndb
*
ndb
,
const
NDBTAB
*
ndbtab
,
struct
Ndb_statistics
*
ndbstat
)
struct
Ndb_statistics
*
ndbstat
)
{
{
DBUG_ENTER
(
"ndb_get_table_statistics"
);
DBUG_PRINT
(
"enter"
,
(
"table: %s"
,
ndbtab
->
getName
()));
NdbTransaction
*
pTrans
;
NdbTransaction
*
pTrans
;
NdbError
error
;
NdbError
error
;
int
retries
=
10
;
int
retries
=
10
;
int
retry_sleep
=
30
*
1000
;
/* 30 milliseconds */
int
retry_sleep
=
30
*
1000
;
/* 30 milliseconds */
char
buff
[
22
],
buff2
[
22
],
buff3
[
22
],
buff4
[
22
];
char
buff
[
22
],
buff2
[
22
],
buff3
[
22
],
buff4
[
22
];
DBUG_ENTER
(
"ndb_get_table_statistics"
);
DBUG_ENTER
(
"ndb_get_table_statistics"
);
DBUG_PRINT
(
"enter"
,
(
"table: %s"
,
table
));
DBUG_PRINT
(
"enter"
,
(
"table: %s"
,
ndbtab
->
getName
()
));
DBUG_ASSERT
(
ndbtab
!=
0
);
DBUG_ASSERT
(
ndbtab
!=
0
);
...
@@ -8170,7 +8168,7 @@ pthread_handler_t ndb_util_thread_func(void *arg __attribute__((unused)))
...
@@ -8170,7 +8168,7 @@ pthread_handler_t ndb_util_thread_func(void *arg __attribute__((unused)))
(
"Table: %s, commit_count: %llu, rows: %llu"
,
(
"Table: %s, commit_count: %llu, rows: %llu"
,
share
->
key
,
share
->
key
,
llstr
(
stat
.
commit_count
,
buff
),
llstr
(
stat
.
commit_count
,
buff
),
llstr
(
stat
.
row_count
,
buff
)));
llstr
(
stat
.
row_count
,
buff
2
)));
}
}
else
else
{
{
...
...
sql/item.cc
View file @
436e7a2d
...
@@ -1427,7 +1427,6 @@ bool agg_item_charsets(DTCollation &coll, const char *fname,
...
@@ -1427,7 +1427,6 @@ bool agg_item_charsets(DTCollation &coll, const char *fname,
LINT_INIT
(
safe_args
[
1
]);
LINT_INIT
(
safe_args
[
1
]);
if
(
agg_item_collations
(
coll
,
fname
,
args
,
nargs
,
flags
,
item_sep
))
if
(
agg_item_collations
(
coll
,
fname
,
args
,
nargs
,
flags
,
item_sep
))
if
(
agg_item_collations
(
coll
,
fname
,
args
,
nargs
,
flags
))
return
TRUE
;
return
TRUE
;
/*
/*
...
...
sql/item_xmlfunc.cc
View file @
436e7a2d
...
@@ -2396,7 +2396,7 @@ void Item_xml_str_func::fix_length_and_dec()
...
@@ -2396,7 +2396,7 @@ void Item_xml_str_func::fix_length_and_dec()
nodeset_func
=
0
;
nodeset_func
=
0
;
if
(
agg_arg_charsets
(
collation
,
args
,
arg_count
,
MY_COLL_CMP_CONV
))
if
(
agg_arg_charsets
(
collation
,
args
,
arg_count
,
MY_COLL_CMP_CONV
,
1
))
return
;
return
;
if
(
collation
.
collation
->
mbminlen
>
1
)
if
(
collation
.
collation
->
mbminlen
>
1
)
...
...
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