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
727f7a85
Commit
727f7a85
authored
Nov 01, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
parents
55974b50
bf30b006
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
8 deletions
+6
-8
configure.in
configure.in
+4
-1
ndb/test/run-test/Makefile.am
ndb/test/run-test/Makefile.am
+1
-0
ndb/tools/drop_tab.cpp
ndb/tools/drop_tab.cpp
+0
-1
ndb/tools/listTables.cpp
ndb/tools/listTables.cpp
+1
-5
ndb/tools/waiter.cpp
ndb/tools/waiter.cpp
+0
-1
No files found.
configure.in
View file @
727f7a85
...
@@ -974,8 +974,11 @@ case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in
...
@@ -974,8 +974,11 @@ case $SYSTEM_TYPE-$MACHINE_TYPE-$ac_cv_prog_gcc in
CFLAGS
=
"
$CFLAGS
-DBIG_TABLES"
CFLAGS
=
"
$CFLAGS
-DBIG_TABLES"
CXXFLAGS
=
"
$CXXFLAGS
-DBIG_TABLES"
CXXFLAGS
=
"
$CXXFLAGS
-DBIG_TABLES"
;;
;;
*
)
;;
esac
case
$SYSTEM_TYPE
-
$ac_cv_prog_gcc
in
# workaround for Sun Forte compile problem for ndb
# workaround for Sun Forte compile problem for ndb
*
solaris
2.
*
-no
)
*
solaris
*
-no
)
ndb_cxxflags_fix
=
"
$ndb_cxxflags_fix
-instances=static"
ndb_cxxflags_fix
=
"
$ndb_cxxflags_fix
-instances=static"
;;
;;
*
)
;;
*
)
;;
...
...
ndb/test/run-test/Makefile.am
View file @
727f7a85
...
@@ -13,6 +13,7 @@ test_SCRIPTS=atrt-analyze-result.sh atrt-gather-result.sh atrt-setup.sh \
...
@@ -13,6 +13,7 @@ test_SCRIPTS=atrt-analyze-result.sh atrt-gather-result.sh atrt-setup.sh \
atrt_SOURCES
=
main.cpp
atrt_SOURCES
=
main.cpp
INCLUDES_LOC
=
-I
$(top_srcdir)
/ndb/test/include
-I
$(top_srcdir)
/ndb/src/mgmclient
INCLUDES_LOC
=
-I
$(top_srcdir)
/ndb/test/include
-I
$(top_srcdir)
/ndb/src/mgmclient
LDADD_LOC
=
$(top_builddir)
/ndb/src/mgmclient/CpcClient.o
\
LDADD_LOC
=
$(top_builddir)
/ndb/src/mgmclient/CpcClient.o
\
$(top_builddir)
/ndb/test/src/libNDBT.a
\
$(top_builddir)
/ndb/src/libndbclient.la
\
$(top_builddir)
/ndb/src/libndbclient.la
\
$(top_builddir)
/dbug/libdbug.a
\
$(top_builddir)
/dbug/libdbug.a
\
$(top_builddir)
/mysys/libmysys.a
\
$(top_builddir)
/mysys/libmysys.a
\
...
...
ndb/tools/drop_tab.cpp
View file @
727f7a85
...
@@ -34,7 +34,6 @@ static struct my_option my_long_options[] =
...
@@ -34,7 +34,6 @@ static struct my_option my_long_options[] =
static
void
print_version
()
static
void
print_version
()
{
{
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
ndbPrintVersion
();
}
}
static
void
usage
()
static
void
usage
()
{
{
...
...
ndb/tools/listTables.cpp
View file @
727f7a85
...
@@ -185,7 +185,6 @@ static struct my_option my_long_options[] =
...
@@ -185,7 +185,6 @@ static struct my_option my_long_options[] =
static
void
print_version
()
static
void
print_version
()
{
{
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
ndbPrintVersion
();
}
}
static
void
usage
()
static
void
usage
()
{
{
...
@@ -226,10 +225,7 @@ int main(int argc, char** argv){
...
@@ -226,10 +225,7 @@ int main(int argc, char** argv){
int
ho_error
;
int
ho_error
;
if
((
ho_error
=
handle_options
(
&
argc
,
&
argv
,
my_long_options
,
get_one_option
)))
if
((
ho_error
=
handle_options
(
&
argc
,
&
argv
,
my_long_options
,
get_one_option
)))
return
NDBT_ProgramExit
(
NDBT_WRONGARGS
);
return
NDBT_ProgramExit
(
NDBT_WRONGARGS
);
if
((
_tabname
=
argv
[
0
])
==
0
)
{
_tabname
=
argv
[
0
];
usage
();
return
NDBT_ProgramExit
(
NDBT_WRONGARGS
);
}
ndb_cluster_connection
=
new
Ndb_cluster_connection
(
opt_connect_str
);
ndb_cluster_connection
=
new
Ndb_cluster_connection
(
opt_connect_str
);
ndb
=
new
Ndb
(
ndb_cluster_connection
,
_dbname
);
ndb
=
new
Ndb
(
ndb_cluster_connection
,
_dbname
);
...
...
ndb/tools/waiter.cpp
View file @
727f7a85
...
@@ -47,7 +47,6 @@ static struct my_option my_long_options[] =
...
@@ -47,7 +47,6 @@ static struct my_option my_long_options[] =
static
void
print_version
()
static
void
print_version
()
{
{
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
printf
(
"MySQL distrib %s, for %s (%s)
\n
"
,
MYSQL_SERVER_VERSION
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
ndbPrintVersion
();
}
}
static
void
usage
()
static
void
usage
()
{
{
...
...
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