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
77b6bc42
Commit
77b6bc42
authored
Apr 19, 2006
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/my/mysql-5.1
parents
1921fa59
7af1f5e0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
68 additions
and
38 deletions
+68
-38
libmysqld/Makefile.am
libmysqld/Makefile.am
+5
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+4
-4
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+7
-11
mysys/my_access.c
mysys/my_access.c
+10
-1
storage/example/ha_example.cc
storage/example/ha_example.cc
+27
-11
storage/ndb/src/mgmapi/mgmapi.cpp
storage/ndb/src/mgmapi/mgmapi.cpp
+15
-9
No files found.
libmysqld/Makefile.am
View file @
77b6bc42
...
...
@@ -136,14 +136,17 @@ else
then
\
$(libmysqld_a_AR)
libmysqld.a
libmysqld_int.a
$(INC_LIB)
;
\
else
\
current_dir
=
`
pwd
`
;
\
rm
-rf
tmp
;
mkdir
tmp
;
\
(
for
arc
in
./libmysqld_int.a
$(INC_LIB)
;
do
\
arpath
=
`
echo
$$
arc|sed
's|[^/]*$$||'
|sed
's|\.libs/$$||'
`
;
\
artmp
=
`
echo
$$
arc|sed
's|^.*/|tmp/lib-|'
`
;
\
for
F
in
`
$(AR)
t
$$
arc
`
;
do
\
if
test
-e
"
$$
arpath/
$$
F"
;
then
echo
"
$$
arpath/
$$
F"
;
else
\
mkdir
$$
artmp
;
cd
$$
artmp
;
$(AR)
x ../../
$$
arc
;
\
cd
../..
;
ls
$$
artmp/
*
;
\
mkdir
$$
artmp
;
cd
$$
artmp
>
/dev/null
;
\
$(AR)
x ../../
$$
arc
;
\
cd
$$
current_dir
>
/dev/null
;
\
ls
$$
artmp/
*
;
\
continue
2
;
fi
;
done
;
\
done
;
echo
$(libmysqld_a_DEPENDENCIES)
)
|
sort
-u
| xargs
$(AR)
cq libmysqld.a
;
\
$(RANLIB)
libmysqld.a
;
\
...
...
mysql-test/mysql-test-run.pl
View file @
77b6bc42
...
...
@@ -532,10 +532,10 @@ sub command_line_setup () {
my
$opt_master_myport
=
9306
;
my
$opt_slave_myport
=
9308
;
$opt_ndbcluster_port
=
93
5
0
;
$opt_ndbcluster_port_slave
=
93
58
;
my
$im_port
=
931
0
;
my
$im_mysqld1_port
=
931
2
;
$opt_ndbcluster_port
=
93
1
0
;
$opt_ndbcluster_port_slave
=
93
11
;
my
$im_port
=
931
2
;
my
$im_mysqld1_port
=
931
3
;
my
$im_mysqld2_port
=
9314
;
#
...
...
mysql-test/mysql-test-run.sh
View file @
77b6bc42
...
...
@@ -7,17 +7,11 @@
# List of failed cases (--force) backported from 4.1 by Joerg
# :-)
echo
"##################################################"
;
echo
"This script is deprecated and will soon be removed"
;
echo
"Use mysql-test-run.pl instead"
;
echo
"Now sleeping 20 seconds..."
;
echo
"##################################################"
;
sleep
20
;
echo
"continuing"
;
echo
;
#echo "##################################################";
#echo "This script is deprecated and will soon be removed";
#echo "Use mysql-test-run.pl instead";
#echo "##################################################";
#echo
#++
# Access Definitions
...
...
@@ -250,6 +244,7 @@ MASTER_MYPORT=9306
SLAVE_RUNNING
=
0
SLAVE_MYHOST
=
127.0.0.1
SLAVE_MYPORT
=
9308
# leave room for 2 masters for cluster tests
MYSQL_MANAGER_LOG
=
$MYSQL_TEST_DIR
/var/log/manager.log
NDBCLUSTER_PORT
=
9350
NDBCLUSTER_PORT_SLAVE
=
9358
...
...
@@ -1196,6 +1191,7 @@ abort_if_failed()
launch_in_background
()
{
shift
echo
$@
| /bin/sh
>>
$CUR_MYERR
2>&1 &
sleep
2
#hack
return
...
...
mysys/my_access.c
View file @
77b6bc42
...
...
@@ -155,6 +155,14 @@ int check_if_legal_tablename(const char *name)
str_list_find
(
&
reserved_names
[
1
],
name
));
}
#else
int
check_if_legal_tablename
(
const
char
*
name
)
{
return
0
;
}
#endif
/* defined(MSDOS) || defined(__WIN__) */
#if defined(MSDOS) || defined(__WIN__) || defined(__EMX__)
...
...
@@ -198,4 +206,5 @@ int check_if_legal_filename(const char *path)
}
DBUG_RETURN
(
0
);
}
#endif
#endif
/* defined(MSDOS) || defined(__WIN__) || defined(__EMX__) */
storage/example/ha_example.cc
View file @
77b6bc42
...
...
@@ -74,6 +74,8 @@
static
handler
*
example_create_handler
(
TABLE_SHARE
*
table
);
static
int
example_init_func
();
static
bool
example_init_func_for_handlerton
();
static
int
example_panic
(
enum
ha_panic_function
flag
);
handlerton
example_hton
=
{
MYSQL_HANDLERTON_INTERFACE_VERSION
,
...
...
@@ -81,7 +83,7 @@ handlerton example_hton= {
SHOW_OPTION_YES
,
"Example storage engine"
,
DB_TYPE_EXAMPLE_DB
,
(
bool
(
*
)())
example_init_func
,
example_init_func_for_handlerton
,
0
,
/* slot */
0
,
/* savepoint size. */
NULL
,
/* close_connection */
...
...
@@ -99,7 +101,7 @@ handlerton example_hton= {
NULL
,
/* close_cursor_read_view */
example_create_handler
,
/* Create a new handler */
NULL
,
/* Drop a database */
NULL
,
/* Panic call */
example_panic
,
/* Panic call */
NULL
,
/* Start Consistent Snapshot */
NULL
,
/* Flush logs */
NULL
,
/* Show status */
...
...
@@ -107,7 +109,10 @@ handlerton example_hton= {
NULL
,
/* Alter table flags */
NULL
,
/* Alter tablespace */
NULL
,
/* Fill Files table */
HTON_CAN_RECREATE
HTON_CAN_RECREATE
,
NULL
,
NULL
,
NULL
,
};
/* Variables for example share methods */
...
...
@@ -126,32 +131,43 @@ static byte* example_get_key(EXAMPLE_SHARE *share,uint *length,
return
(
byte
*
)
share
->
table_name
;
}
static
int
example_init_func
()
{
DBUG_ENTER
(
"example_init_func"
);
if
(
!
example_init
)
{
example_init
++
;
example_init
=
1
;
VOID
(
pthread_mutex_init
(
&
example_mutex
,
MY_MUTEX_INIT_FAST
));
(
void
)
hash_init
(
&
example_open_tables
,
system_charset_info
,
32
,
0
,
0
,
(
hash_get_key
)
example_get_key
,
0
,
0
);
}
return
0
;
DBUG_RETURN
(
0
)
;
}
static
int
example_done_func
()
{
int
error
=
0
;
DBUG_ENTER
(
"example_done_func"
);
if
(
example_init
)
{
example_init
=
0
;
if
(
example_open_tables
.
records
)
{
return
1
;
}
error
=
1
;
hash_free
(
&
example_open_tables
);
pthread_mutex_destroy
(
&
example_mutex
);
example_init
--
;
}
return
0
;
DBUG_RETURN
(
0
);
}
static
bool
example_init_func_for_handlerton
()
{
return
example_init_func
();
}
static
int
example_panic
(
enum
ha_panic_function
flag
)
{
return
example_done_func
();
}
...
...
storage/ndb/src/mgmapi/mgmapi.cpp
View file @
77b6bc42
...
...
@@ -138,6 +138,12 @@ setError(NdbMgmHandle h, int error, int error_line, const char * msg, ...){
return ret; \
}
#define DBUG_CHECK_REPLY(reply, ret) \
if (reply == NULL) { \
SET_ERROR(handle, NDB_MGM_ILLEGAL_SERVER_REPLY, ""); \
DBUG_RETURN(ret); \
}
/*****************************************************************************
* Handles
*****************************************************************************/
...
...
@@ -2171,9 +2177,9 @@ ndb_mgm_set_connection_int_parameter(NdbMgmHandle handle,
int
param
,
int
value
,
struct
ndb_mgm_reply
*
mgmreply
){
DBUG_ENTER
(
"ndb_mgm_set_connection_int_parameter"
);
CHECK_HANDLE
(
handle
,
0
);
CHECK_CONNECTED
(
handle
,
0
);
DBUG_ENTER
(
"ndb_mgm_set_connection_int_parameter"
);
Properties
args
;
args
.
put
(
"node1"
,
node1
);
...
...
@@ -2190,7 +2196,7 @@ ndb_mgm_set_connection_int_parameter(NdbMgmHandle handle,
const
Properties
*
prop
;
prop
=
ndb_mgm_call
(
handle
,
reply
,
"set connection parameter"
,
&
args
);
CHECK_REPLY
(
prop
,
-
1
);
DBUG_
CHECK_REPLY
(
prop
,
-
1
);
int
res
=
-
1
;
do
{
...
...
@@ -2214,9 +2220,9 @@ ndb_mgm_get_connection_int_parameter(NdbMgmHandle handle,
int
param
,
int
*
value
,
struct
ndb_mgm_reply
*
mgmreply
){
DBUG_ENTER
(
"ndb_mgm_get_connection_int_parameter"
);
CHECK_HANDLE
(
handle
,
-
1
);
CHECK_CONNECTED
(
handle
,
-
2
);
DBUG_ENTER
(
"ndb_mgm_get_connection_int_parameter"
);
Properties
args
;
args
.
put
(
"node1"
,
node1
);
...
...
@@ -2232,7 +2238,7 @@ ndb_mgm_get_connection_int_parameter(NdbMgmHandle handle,
const
Properties
*
prop
;
prop
=
ndb_mgm_call
(
handle
,
reply
,
"get connection parameter"
,
&
args
);
CHECK_REPLY
(
prop
,
-
3
);
DBUG_
CHECK_REPLY
(
prop
,
-
3
);
int
res
=
-
1
;
do
{
...
...
@@ -2280,9 +2286,9 @@ ndb_mgm_get_mgmd_nodeid(NdbMgmHandle handle)
{
Uint32
nodeid
=
0
;
DBUG_ENTER
(
"ndb_mgm_get_mgmd_nodeid"
);
CHECK_HANDLE
(
handle
,
0
);
CHECK_CONNECTED
(
handle
,
0
);
DBUG_ENTER
(
"ndb_mgm_get_mgmd_nodeid"
);
Properties
args
;
...
...
@@ -2294,7 +2300,7 @@ ndb_mgm_get_mgmd_nodeid(NdbMgmHandle handle)
const
Properties
*
prop
;
prop
=
ndb_mgm_call
(
handle
,
reply
,
"get mgmd nodeid"
,
&
args
);
CHECK_REPLY
(
prop
,
0
);
DBUG_
CHECK_REPLY
(
prop
,
0
);
if
(
!
prop
->
get
(
"nodeid"
,
&
nodeid
)){
fprintf
(
handle
->
errstream
,
"Unable to get value
\n
"
);
...
...
@@ -2308,9 +2314,9 @@ ndb_mgm_get_mgmd_nodeid(NdbMgmHandle handle)
extern
"C"
int
ndb_mgm_report_event
(
NdbMgmHandle
handle
,
Uint32
*
data
,
Uint32
length
)
{
DBUG_ENTER
(
"ndb_mgm_report_event"
);
CHECK_HANDLE
(
handle
,
0
);
CHECK_CONNECTED
(
handle
,
0
);
DBUG_ENTER
(
"ndb_mgm_report_event"
);
Properties
args
;
args
.
put
(
"length"
,
length
);
...
...
@@ -2329,7 +2335,7 @@ int ndb_mgm_report_event(NdbMgmHandle handle, Uint32 *data, Uint32 length)
const
Properties
*
prop
;
prop
=
ndb_mgm_call
(
handle
,
reply
,
"report event"
,
&
args
);
CHECK_REPLY
(
prop
,
-
1
);
DBUG_
CHECK_REPLY
(
prop
,
-
1
);
DBUG_RETURN
(
0
);
}
...
...
@@ -2337,9 +2343,9 @@ int ndb_mgm_report_event(NdbMgmHandle handle, Uint32 *data, Uint32 length)
extern
"C"
int
ndb_mgm_end_session
(
NdbMgmHandle
handle
)
{
DBUG_ENTER
(
"ndb_mgm_end_session"
);
CHECK_HANDLE
(
handle
,
0
);
CHECK_CONNECTED
(
handle
,
0
);
DBUG_ENTER
(
"ndb_mgm_end_session"
);
SocketOutputStream
s_output
(
handle
->
socket
);
s_output
.
println
(
"end session"
);
...
...
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