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
f21fd094
Commit
f21fd094
authored
Apr 25, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new
parents
9ae7dd9e
24396578
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
135 additions
and
28 deletions
+135
-28
mysql-test/r/ndb_binlog_discover.result
mysql-test/r/ndb_binlog_discover.result
+13
-0
mysql-test/r/ndb_dd_basic.result
mysql-test/r/ndb_dd_basic.result
+22
-1
mysql-test/r/ndb_restore.result
mysql-test/r/ndb_restore.result
+6
-0
mysql-test/t/ndb_binlog_discover.test
mysql-test/t/ndb_binlog_discover.test
+19
-0
mysql-test/t/ndb_dd_basic.test
mysql-test/t/ndb_dd_basic.test
+20
-2
mysql-test/t/ndb_restore.test
mysql-test/t/ndb_restore.test
+4
-2
sql/handler.h
sql/handler.h
+5
-4
sql/sql_tablespace.cc
sql/sql_tablespace.cc
+35
-15
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+9
-2
No files found.
mysql-test/r/ndb_binlog_discover.result
0 → 100644
View file @
f21fd094
drop table if exists t1;
create table t1 (a int key) engine=ndb;
reset master;
insert into t1 values(1);
show binlog events from <binlog_start>;
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Query # # BEGIN
master-bin.000001 # Table_map # # table_id: # (test.t1)
master-bin.000001 # Table_map # # table_id: # (cluster.apply_status)
master-bin.000001 # Write_rows # # table_id: #
master-bin.000001 # Write_rows # # table_id: # flags: STMT_END_F
master-bin.000001 # Query # # COMMIT
drop table t1;
mysql-test/r/ndb_dd_basic.result
View file @
f21fd094
...
...
@@ -3,11 +3,32 @@ CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE 16M
UNDO_BUFFER_SIZE = 1M
ENGINE=NDB;
ENGINE=MYISAM;
Warnings:
Error 1539 Table storage engine 'MyISAM' does not support the create option 'TABLESPACE or LOGFILE GROUP'
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE = 4M
ENGINE=XYZ;
Warnings:
Error 1266 Using storage engine MyISAM for table 'lg1'
Error 1539 Table storage engine 'MyISAM' does not support the create option 'TABLESPACE or LOGFILE GROUP'
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
INITIAL_SIZE 12M;
Warnings:
Error 1539 Table storage engine 'MyISAM' does not support the create option 'TABLESPACE or LOGFILE GROUP'
set storage_engine=ndb;
CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE 16M
UNDO_BUFFER_SIZE = 1M;
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE = 4M
ENGINE=NDB;
set storage_engine=myisam;
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
...
...
mysql-test/r/ndb_restore.result
View file @
f21fd094
...
...
@@ -528,6 +528,9 @@ SELECT * FROM SYSTEM_VALUES ORDER BY SYSTEM_VALUES_ID;
SYSTEM_VALUES_ID VALUE
0 4767
1 6
SELECT * FROM cluster.apply_status WHERE server_id=0;
server_id epoch
0 314
TRUNCATE GL;
TRUNCATE ACCOUNT;
TRUNCATE TRANSACTION;
...
...
@@ -579,4 +582,7 @@ SELECT * FROM SYSTEM_VALUES ORDER BY SYSTEM_VALUES_ID;
SYSTEM_VALUES_ID VALUE
0 2297
1 5
SELECT * FROM cluster.apply_status WHERE server_id=0;
server_id epoch
0 331
DROP DATABASE BANK;
mysql-test/t/ndb_binlog_discover.test
0 → 100644
View file @
f21fd094
--
source
include
/
have_ndb
.
inc
--
source
include
/
have_binlog_format_row
.
inc
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
#
# Bug #14516 Restart of cluster can cause NDB API replication failure
#
create
table
t1
(
a
int
key
)
engine
=
ndb
;
reset
master
;
--
exec
$NDB_MGM
--
no
-
defaults
-
e
"all restart -n"
>
/
dev
/
null
--
exec
$NDB_TOOLS_DIR
/
ndb_waiter
--
no
-
defaults
--
not
-
started
>
/
dev
/
null
--
exec
$NDB_MGM
--
no
-
defaults
-
e
"all start"
>
/
dev
/
null
--
exec
$NDB_TOOLS_DIR
/
ndb_waiter
--
no
-
defaults
>
/
dev
/
null
insert
into
t1
values
(
1
);
--
source
include
/
show_binlog_events
.
inc
drop
table
t1
;
mysql-test/t/ndb_dd_basic.test
View file @
f21fd094
...
...
@@ -14,16 +14,33 @@
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
# some negative tests
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
MYISAM
;
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
=
4
M
ENGINE
=
XYZ
;
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
INITIAL_SIZE 12M
;
##################################
# Basic test of disk tables for NDB
# Start by creating a logfile group
##################################
set
storage_engine
=
ndb
;
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
NDB
;
UNDO_BUFFER_SIZE
=
1
M
;
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
...
...
@@ -34,6 +51,7 @@ ENGINE=NDB;
# Create a tablespace connected to the logfile group
###################################################
set
storage_engine
=
myisam
;
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
...
...
mysql-test/t/ndb_restore.test
View file @
f21fd094
...
...
@@ -384,12 +384,13 @@ DROP DATABASE IF EXISTS BANK;
CREATE
DATABASE
BANK
default
charset
=
latin1
default
collate
=
latin1_bin
;
USE
BANK
;
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
b
1
-
n
1
-
p
1
-
m
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup51
>>
$NDB_TOOLS_OUTPUT
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
b
1
-
n
2
-
p
1
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup51
>>
$NDB_TOOLS_OUTPUT
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
e
-
b
1
-
n
2
-
p
1
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup51
>>
$NDB_TOOLS_OUTPUT
SHOW
TABLES
;
SELECT
*
FROM
GL
ORDER
BY
TIME
,
ACCOUNT_TYPE
;
SELECT
*
FROM
ACCOUNT
ORDER
BY
ACCOUNT_ID
;
SELECT
COUNT
(
*
)
FROM
TRANSACTION
;
SELECT
*
FROM
SYSTEM_VALUES
ORDER
BY
SYSTEM_VALUES_ID
;
SELECT
*
FROM
cluster
.
apply_status
WHERE
server_id
=
0
;
#
# verify restore of 5.0 backup
...
...
@@ -402,9 +403,10 @@ TRUNCATE TRANSACTION;
TRUNCATE
SYSTEM_VALUES
;
TRUNCATE
ACCOUNT_TYPE
;
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
b
1
-
n
1
-
p
1
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup50
>>
$NDB_TOOLS_OUTPUT
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
b
1
-
n
2
-
p
1
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup50
>>
$NDB_TOOLS_OUTPUT
--
exec
$NDB_TOOLS_DIR
/
ndb_restore
--
no
-
defaults
-
e
-
b
1
-
n
2
-
p
1
-
r
$MYSQL_TEST_DIR
/
std_data
/
ndb_backup50
>>
$NDB_TOOLS_OUTPUT
SELECT
*
FROM
GL
ORDER
BY
TIME
,
ACCOUNT_TYPE
;
SELECT
*
FROM
ACCOUNT
ORDER
BY
ACCOUNT_ID
;
SELECT
COUNT
(
*
)
FROM
TRANSACTION
;
SELECT
*
FROM
SYSTEM_VALUES
ORDER
BY
SYSTEM_VALUES_ID
;
SELECT
*
FROM
cluster
.
apply_status
WHERE
server_id
=
0
;
DROP
DATABASE
BANK
;
sql/handler.h
View file @
f21fd094
...
...
@@ -402,6 +402,7 @@ enum tablespace_access_mode
TS_NOT_ACCESSIBLE
=
2
};
struct
handlerton
;
class
st_alter_tablespace
:
public
Sql_alloc
{
public:
...
...
@@ -419,7 +420,7 @@ class st_alter_tablespace : public Sql_alloc
ulonglong
autoextend_size
;
ulonglong
max_size
;
uint
nodegroup_id
;
enum
legacy_db_type
storage_engine
;
const
handlerton
*
storage_engine
;
bool
wait_until_completed
;
const
char
*
ts_comment
;
enum
tablespace_access_mode
ts_access_mode
;
...
...
@@ -437,7 +438,7 @@ class st_alter_tablespace : public Sql_alloc
initial_size
=
128
*
1024
*
1024
;
//Default 128 MByte
autoextend_size
=
0
;
//No autoextension as default
max_size
=
0
;
//Max size == initial size => no extension
storage_engine
=
DB_TYPE_UNKNOWN
;
storage_engine
=
NULL
;
nodegroup_id
=
UNDEF_NODEGROUP
;
wait_until_completed
=
TRUE
;
ts_comment
=
NULL
;
...
...
@@ -468,7 +469,7 @@ enum ha_stat_type { HA_ENGINE_STATUS, HA_ENGINE_LOGS, HA_ENGINE_MUTEX };
savepoint_*, prepare, recover, and *_by_xid pointers can be 0.
*/
typedef
struct
struct
handlerton
{
/*
handlerton structure version
...
...
@@ -581,7 +582,7 @@ typedef struct
const
char
*
query
,
uint
query_length
,
const
char
*
db
,
const
char
*
table_name
);
int
(
*
release_temporary_latches
)(
THD
*
thd
);
}
handlerton
;
};
extern
const
handlerton
default_hton
;
...
...
sql/sql_tablespace.cc
View file @
f21fd094
...
...
@@ -21,31 +21,51 @@
int
mysql_alter_tablespace
(
THD
*
thd
,
st_alter_tablespace
*
ts_info
)
{
int
error
=
HA_ADMIN_NOT_IMPLEMENTED
;
handlerton
*
hton
;
const
handlerton
*
hton
=
ts_info
->
storage_engine
;
DBUG_ENTER
(
"mysql_alter_tablespace"
);
/*
If the user haven't defined an engine, this will fallback to using the
default storage engine.
*/
hton
=
ha_resolve_by_legacy_type
(
thd
,
ts_info
->
storage_engine
);
if
(
hton
==
NULL
||
hton
==
&
default_hton
||
hton
->
state
!=
SHOW_OPTION_YES
)
{
hton
=
ha_resolve_by_legacy_type
(
thd
,
DB_TYPE_DEFAULT
);
if
(
ts_info
->
storage_engine
!=
0
)
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
ER_WARN_USING_OTHER_HANDLER
,
ER
(
ER_WARN_USING_OTHER_HANDLER
),
hton
->
name
,
ts_info
->
tablespace_name
?
ts_info
->
tablespace_name
:
ts_info
->
logfile_group_name
);
}
if
(
hton
->
state
==
SHOW_OPTION_YES
&&
hton
->
alter_tablespace
&&
(
error
=
hton
->
alter_tablespace
(
thd
,
ts_info
)))
if
(
hton
->
alter_tablespace
)
{
if
(
error
==
HA_ADMIN_NOT_IMPLEMENTED
)
{
my_error
(
ER_CHECK_NOT_IMPLEMENTED
,
MYF
(
0
),
""
);
}
else
if
(
error
==
1
)
if
((
error
=
hton
->
alter_tablespace
(
thd
,
ts_info
)))
{
DBUG_RETURN
(
1
);
if
(
error
==
HA_ADMIN_NOT_IMPLEMENTED
)
{
my_error
(
ER_CHECK_NOT_IMPLEMENTED
,
MYF
(
0
),
""
);
}
else
if
(
error
==
1
)
{
DBUG_RETURN
(
1
);
}
else
{
my_error
(
error
,
MYF
(
0
));
}
DBUG_RETURN
(
error
);
}
else
{
my_error
(
error
,
MYF
(
0
));
}
DBUG_RETURN
(
error
);
}
else
{
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
ER_ILLEGAL_HA_CREATE_OPTION
,
ER
(
ER_ILLEGAL_HA_CREATE_OPTION
),
hton
->
name
,
"TABLESPACE or LOGFILE GROUP"
);
}
if
(
mysql_bin_log
.
is_open
())
{
...
...
sql/sql_yacc.yy
View file @
f21fd094
...
...
@@ -3187,13 +3187,13 @@ opt_ts_engine:
opt_storage ENGINE_SYM opt_equal storage_engines
{
LEX *lex= Lex;
if (lex->alter_tablespace_info->storage_engine !=
DB_TYPE_UNKNOWN
)
if (lex->alter_tablespace_info->storage_engine !=
NULL
)
{
my_error(ER_FILEGROUP_OPTION_ONLY_ONCE,MYF(0),
"STORAGE ENGINE");
YYABORT;
}
lex->alter_tablespace_info->storage_engine= $4
->db_type
;
lex->alter_tablespace_info->storage_engine= $4
? $4 : &default_hton
;
};
opt_ts_wait:
...
...
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
f21fd094
...
...
@@ -1911,12 +1911,16 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
// loop twice where first loop only sets sizes
int
loop
;
int
result
=
0
;
for
(
loop
=
0
;
loop
<=
1
;
loop
++
)
{
if
(
loop
==
1
)
{
if
(
alloc_mem
(
data
,
ptr
)
!=
0
)
DBUG_RETURN_EVENT
(
-
1
);
{
result
=
-
1
;
goto
end
;
}
*
data
->
sdata
=
*
sdata
;
data
->
sdata
->
operation
=
tp
->
t3
;
}
...
...
@@ -2030,10 +2034,13 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
}
}
end:
// free old data
NdbMem_Free
((
char
*
)
olddata
.
memory
);
assert
(
m_total_alloc
>=
olddata
.
sz
);
m_total_alloc
-=
olddata
.
sz
;
DBUG_RETURN_EVENT
(
0
);
DBUG_RETURN_EVENT
(
result
);
}
/*
...
...
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