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
e82605bc
Commit
e82605bc
authored
Apr 10, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/51-work
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
parents
50e5752e
d3b1572a
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
68 additions
and
21 deletions
+68
-21
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+5
-4
storage/ndb/include/kernel/signaldata/DictTabInfo.hpp
storage/ndb/include/kernel/signaldata/DictTabInfo.hpp
+5
-4
storage/ndb/include/kernel/signaldata/DropFilegroup.hpp
storage/ndb/include/kernel/signaldata/DropFilegroup.hpp
+5
-3
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
+2
-2
storage/ndb/src/kernel/blocks/backup/BackupInit.cpp
storage/ndb/src/kernel/blocks/backup/BackupInit.cpp
+3
-4
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+17
-1
storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp
+1
-0
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
+29
-3
storage/ndb/src/ndbapi/ndberror.c
storage/ndb/src/ndbapi/ndberror.c
+1
-0
No files found.
sql/ha_ndbcluster.cc
View file @
e82605bc
...
@@ -5733,7 +5733,6 @@ int ndbcluster_find_all_files(THD *thd)
...
@@ -5733,7 +5733,6 @@ int ndbcluster_find_all_files(THD *thd)
DBUG_ENTER
(
"ndbcluster_find_all_files"
);
DBUG_ENTER
(
"ndbcluster_find_all_files"
);
Ndb
*
ndb
;
Ndb
*
ndb
;
char
key
[
FN_REFLEN
];
char
key
[
FN_REFLEN
];
NdbDictionary
::
Dictionary
::
List
list
;
if
(
!
(
ndb
=
check_ndb_in_thd
(
thd
)))
if
(
!
(
ndb
=
check_ndb_in_thd
(
thd
)))
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
...
@@ -5743,6 +5742,7 @@ int ndbcluster_find_all_files(THD *thd)
...
@@ -5743,6 +5742,7 @@ int ndbcluster_find_all_files(THD *thd)
int
unhandled
,
retries
=
5
;
int
unhandled
,
retries
=
5
;
do
do
{
{
NdbDictionary
::
Dictionary
::
List
list
;
if
(
dict
->
listObjects
(
list
,
NdbDictionary
::
Object
::
UserTable
)
!=
0
)
if
(
dict
->
listObjects
(
list
,
NdbDictionary
::
Object
::
UserTable
)
!=
0
)
ERR_RETURN
(
dict
->
getNdbError
());
ERR_RETURN
(
dict
->
getNdbError
());
unhandled
=
0
;
unhandled
=
0
;
...
@@ -10029,14 +10029,15 @@ static int ndbcluster_fill_files_table(THD *thd, TABLE_LIST *tables, COND *cond)
...
@@ -10029,14 +10029,15 @@ static int ndbcluster_fill_files_table(THD *thd, TABLE_LIST *tables, COND *cond)
}
}
}
}
dict
->
listObjects
(
dflist
,
NdbDictionary
::
Object
::
Undofile
);
NdbDictionary
::
Dictionary
::
List
uflist
;
dict
->
listObjects
(
uflist
,
NdbDictionary
::
Object
::
Undofile
);
ndberr
=
dict
->
getNdbError
();
ndberr
=
dict
->
getNdbError
();
if
(
ndberr
.
classification
!=
NdbError
::
NoError
)
if
(
ndberr
.
classification
!=
NdbError
::
NoError
)
ERR_RETURN
(
ndberr
);
ERR_RETURN
(
ndberr
);
for
(
i
=
0
;
i
<
d
flist
.
count
;
i
++
)
for
(
i
=
0
;
i
<
u
flist
.
count
;
i
++
)
{
{
NdbDictionary
::
Dictionary
::
List
::
Element
&
elt
=
d
flist
.
elements
[
i
];
NdbDictionary
::
Dictionary
::
List
::
Element
&
elt
=
u
flist
.
elements
[
i
];
Ndb_cluster_connection_node_iter
iter
;
Ndb_cluster_connection_node_iter
iter
;
unsigned
id
;
unsigned
id
;
...
...
storage/ndb/include/kernel/signaldata/DictTabInfo.hpp
View file @
e82605bc
...
@@ -586,7 +586,8 @@ public:
...
@@ -586,7 +586,8 @@ public:
enum
Unimplemented
enum
Unimplemented
{
{
ScanOptimised
=
15
,
//Default updateOptimised
ScanOptimised
=
15
,
//Default updateOptimised
AttributeGroup
=
1012
//Default 0
AttributeGroup
=
1012
,
//Default 0
FileNo
=
102
};
};
};
};
...
@@ -618,13 +619,13 @@ struct DictFilegroupInfo {
...
@@ -618,13 +619,13 @@ struct DictFilegroupInfo {
*/
*/
FileName
=
100
,
FileName
=
100
,
FileType
=
101
,
FileType
=
101
,
FileId
=
102
,
FileId
=
103
,
FileNo
=
103
,
// Per Filegroup
FileFGroupId
=
104
,
FileFGroupId
=
104
,
FileFGroupVersion
=
105
,
FileFGroupVersion
=
105
,
FileSizeHi
=
106
,
FileSizeHi
=
106
,
FileSizeLo
=
107
,
FileSizeLo
=
107
,
FileFreeExtents
=
108
,
FileFreeExtents
=
108
,
FileVersion
=
109
,
FileEnd
=
199
,
//
FileEnd
=
199
,
//
/**
/**
...
@@ -696,8 +697,8 @@ struct DictFilegroupInfo {
...
@@ -696,8 +697,8 @@ struct DictFilegroupInfo {
struct
File
{
struct
File
{
char
FileName
[
PATH_MAX
];
char
FileName
[
PATH_MAX
];
Uint32
FileType
;
Uint32
FileType
;
Uint32
FileNo
;
Uint32
FileId
;
Uint32
FileId
;
Uint32
FileVersion
;
Uint32
FilegroupId
;
Uint32
FilegroupId
;
Uint32
FilegroupVersion
;
Uint32
FilegroupVersion
;
Uint32
FileSizeHi
;
Uint32
FileSizeHi
;
...
...
storage/ndb/include/kernel/signaldata/DropFilegroup.hpp
View file @
e82605bc
...
@@ -66,7 +66,8 @@ struct DropFilegroupRef {
...
@@ -66,7 +66,8 @@ struct DropFilegroupRef {
Busy
=
701
,
Busy
=
701
,
NotMaster
=
702
,
NotMaster
=
702
,
NoSuchFilegroup
=
767
,
NoSuchFilegroup
=
767
,
FilegroupInUse
=
768
FilegroupInUse
=
768
,
InvalidSchemaObjectVersion
=
774
};
};
Uint32
senderData
;
Uint32
senderData
;
...
@@ -150,7 +151,8 @@ struct DropFileRef {
...
@@ -150,7 +151,8 @@ struct DropFileRef {
NoError
=
0
,
NoError
=
0
,
Busy
=
701
,
Busy
=
701
,
NoSuchFile
=
766
,
NoSuchFile
=
766
,
DropUndoFileNotSupported
=
769
DropUndoFileNotSupported
=
769
,
InvalidSchemaObjectVersion
=
774
};
};
Uint32
senderData
;
Uint32
senderData
;
...
...
storage/ndb/src/common/debugger/signaldata/DictTabInfo.cpp
View file @
e82605bc
...
@@ -216,8 +216,8 @@ SimpleProperties::SP2StructMapping
...
@@ -216,8 +216,8 @@ SimpleProperties::SP2StructMapping
DictFilegroupInfo
::
FileMapping
[]
=
{
DictFilegroupInfo
::
FileMapping
[]
=
{
DFGIMAPS
(
File
,
FileName
,
FileName
,
0
,
PATH_MAX
),
DFGIMAPS
(
File
,
FileName
,
FileName
,
0
,
PATH_MAX
),
DFGIMAP2
(
File
,
FileType
,
FileType
,
0
,
1
),
DFGIMAP2
(
File
,
FileType
,
FileType
,
0
,
1
),
DFGIMAP
(
File
,
FileNo
,
FileNo
),
DFGIMAP
(
File
,
FileId
,
FileId
),
DFGIMAP
(
File
,
FileId
,
FileId
),
DFGIMAP
(
File
,
FileVersion
,
FileVersion
),
DFGIMAP
(
File
,
FileFGroupId
,
FilegroupId
),
DFGIMAP
(
File
,
FileFGroupId
,
FilegroupId
),
DFGIMAP
(
File
,
FileFGroupVersion
,
FilegroupVersion
),
DFGIMAP
(
File
,
FileFGroupVersion
,
FilegroupVersion
),
DFGIMAP
(
File
,
FileSizeHi
,
FileSizeHi
),
DFGIMAP
(
File
,
FileSizeHi
,
FileSizeHi
),
...
@@ -254,8 +254,8 @@ void
...
@@ -254,8 +254,8 @@ void
DictFilegroupInfo
::
File
::
init
(){
DictFilegroupInfo
::
File
::
init
(){
memset
(
FileName
,
sizeof
(
FileName
),
0
);
memset
(
FileName
,
sizeof
(
FileName
),
0
);
FileType
=
~
0
;
FileType
=
~
0
;
FileNo
=
~
0
;
FileId
=
~
0
;
FileId
=
~
0
;
FileVersion
=
~
0
;
FilegroupId
=
~
0
;
FilegroupId
=
~
0
;
FilegroupVersion
=
~
0
;
FilegroupVersion
=
~
0
;
FileSizeHi
=
0
;
FileSizeHi
=
0
;
...
...
storage/ndb/src/kernel/blocks/backup/BackupInit.cpp
View file @
e82605bc
...
@@ -143,12 +143,13 @@ Backup::execREAD_CONFIG_REQ(Signal* signal)
...
@@ -143,12 +143,13 @@ Backup::execREAD_CONFIG_REQ(Signal* signal)
m_ctx
.
m_config
.
getOwnConfigIterator
();
m_ctx
.
m_config
.
getOwnConfigIterator
();
ndbrequire
(
p
!=
0
);
ndbrequire
(
p
!=
0
);
Uint32
noBackups
=
0
,
noTables
=
0
,
noAttribs
=
0
;
Uint32
noBackups
=
0
,
noTables
=
0
,
noAttribs
=
0
,
noFrags
=
0
;
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_DISCLESS
,
&
m_diskless
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_DISCLESS
,
&
m_diskless
));
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_PARALLEL_BACKUPS
,
&
noBackups
);
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_PARALLEL_BACKUPS
,
&
noBackups
);
// ndbrequire(!ndb_mgm_get_int_parameter(p, CFG_DB_NO_TABLES, &noTables));
// ndbrequire(!ndb_mgm_get_int_parameter(p, CFG_DB_NO_TABLES, &noTables));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DICT_TABLE
,
&
noTables
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DICT_TABLE
,
&
noTables
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_NO_ATTRIBUTES
,
&
noAttribs
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_NO_ATTRIBUTES
,
&
noAttribs
));
ndbrequire
(
!
ndb_mgm_get_int_parameter
(
p
,
CFG_DIH_FRAG_CONNECT
,
&
noFrags
));
noAttribs
++
;
//RT 527 bug fix
noAttribs
++
;
//RT 527 bug fix
...
@@ -158,9 +159,7 @@ Backup::execREAD_CONFIG_REQ(Signal* signal)
...
@@ -158,9 +159,7 @@ Backup::execREAD_CONFIG_REQ(Signal* signal)
c_tablePool
.
setSize
(
noBackups
*
noTables
+
1
);
c_tablePool
.
setSize
(
noBackups
*
noTables
+
1
);
c_attributePool
.
setSize
(
noBackups
*
noAttribs
+
MAX_ATTRIBUTES_IN_TABLE
);
c_attributePool
.
setSize
(
noBackups
*
noAttribs
+
MAX_ATTRIBUTES_IN_TABLE
);
c_triggerPool
.
setSize
(
noBackups
*
3
*
noTables
);
c_triggerPool
.
setSize
(
noBackups
*
3
*
noTables
);
c_fragmentPool
.
setSize
(
noBackups
*
noFrags
+
1
);
// 2 = no of replicas
c_fragmentPool
.
setSize
(
noBackups
*
NO_OF_FRAG_PER_NODE
*
noTables
+
1
);
Uint32
szDataBuf
=
(
2
*
1024
*
1024
);
Uint32
szDataBuf
=
(
2
*
1024
*
1024
);
Uint32
szLogBuf
=
(
2
*
1024
*
1024
);
Uint32
szLogBuf
=
(
2
*
1024
*
1024
);
...
...
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
e82605bc
...
@@ -631,7 +631,8 @@ Dbdict::packFileIntoPages(SimpleProperties::Writer & w,
...
@@ -631,7 +631,8 @@ Dbdict::packFileIntoPages(SimpleProperties::Writer & w,
f
.
FileSizeHi
=
(
f_ptr
.
p
->
m_file_size
>>
32
);
f
.
FileSizeHi
=
(
f_ptr
.
p
->
m_file_size
>>
32
);
f
.
FileSizeLo
=
(
f_ptr
.
p
->
m_file_size
&
0xFFFFFFFF
);
f
.
FileSizeLo
=
(
f_ptr
.
p
->
m_file_size
&
0xFFFFFFFF
);
f
.
FileFreeExtents
=
free_extents
;
f
.
FileFreeExtents
=
free_extents
;
f
.
FileNo
=
f_ptr
.
p
->
key
;
f
.
FileId
=
f_ptr
.
p
->
key
;
f
.
FileVersion
=
f_ptr
.
p
->
m_version
;
FilegroupPtr
lfg_ptr
;
FilegroupPtr
lfg_ptr
;
ndbrequire
(
c_filegroup_hash
.
find
(
lfg_ptr
,
f
.
FilegroupId
));
ndbrequire
(
c_filegroup_hash
.
find
(
lfg_ptr
,
f
.
FilegroupId
));
...
@@ -13588,6 +13589,13 @@ Dbdict::execDROP_FILE_REQ(Signal* signal)
...
@@ -13588,6 +13589,13 @@ Dbdict::execDROP_FILE_REQ(Signal* signal)
break
;
break
;
}
}
if
(
file_ptr
.
p
->
m_version
!=
version
)
{
ref
->
errorCode
=
DropFileRef
::
InvalidSchemaObjectVersion
;
ref
->
errorLine
=
__LINE__
;
break
;
}
Ptr
<
SchemaTransaction
>
trans_ptr
;
Ptr
<
SchemaTransaction
>
trans_ptr
;
if
(
!
c_Trans
.
seize
(
trans_ptr
))
if
(
!
c_Trans
.
seize
(
trans_ptr
))
{
{
...
@@ -13663,6 +13671,13 @@ Dbdict::execDROP_FILEGROUP_REQ(Signal* signal)
...
@@ -13663,6 +13671,13 @@ Dbdict::execDROP_FILEGROUP_REQ(Signal* signal)
break
;
break
;
}
}
if
(
filegroup_ptr
.
p
->
m_version
!=
version
)
{
ref
->
errorCode
=
DropFilegroupRef
::
InvalidSchemaObjectVersion
;
ref
->
errorLine
=
__LINE__
;
break
;
}
Ptr
<
SchemaTransaction
>
trans_ptr
;
Ptr
<
SchemaTransaction
>
trans_ptr
;
if
(
!
c_Trans
.
seize
(
trans_ptr
))
if
(
!
c_Trans
.
seize
(
trans_ptr
))
{
{
...
@@ -15095,6 +15110,7 @@ Dbdict::create_file_prepare_start(Signal* signal, SchemaOp* op){
...
@@ -15095,6 +15110,7 @@ Dbdict::create_file_prepare_start(Signal* signal, SchemaOp* op){
filePtr
.
p
->
m_obj_ptr_i
=
obj_ptr
.
i
;
filePtr
.
p
->
m_obj_ptr_i
=
obj_ptr
.
i
;
filePtr
.
p
->
m_filegroup_id
=
f
.
FilegroupId
;
filePtr
.
p
->
m_filegroup_id
=
f
.
FilegroupId
;
filePtr
.
p
->
m_type
=
f
.
FileType
;
filePtr
.
p
->
m_type
=
f
.
FileType
;
filePtr
.
p
->
m_version
=
op
->
m_obj_version
;
obj_ptr
.
p
->
m_id
=
op
->
m_obj_id
;
obj_ptr
.
p
->
m_id
=
op
->
m_obj_id
;
obj_ptr
.
p
->
m_type
=
f
.
FileType
;
obj_ptr
.
p
->
m_type
=
f
.
FileType
;
...
...
storage/ndb/src/kernel/blocks/dbdict/Dbdict.hpp
View file @
e82605bc
...
@@ -535,6 +535,7 @@ public:
...
@@ -535,6 +535,7 @@ public:
Uint32
key
;
Uint32
key
;
Uint32
m_magic
;
Uint32
m_magic
;
Uint32
m_version
;
Uint32
m_obj_ptr_i
;
Uint32
m_obj_ptr_i
;
Uint32
m_filegroup_id
;
Uint32
m_filegroup_id
;
Uint32
m_type
;
Uint32
m_type
;
...
...
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
e82605bc
...
@@ -4625,12 +4625,26 @@ NdbDictInterface::get_filegroup(NdbFilegroupImpl & dst,
...
@@ -4625,12 +4625,26 @@ NdbDictInterface::get_filegroup(NdbFilegroupImpl & dst,
ptr
[
0
].
p
=
(
Uint32
*
)
name
;
ptr
[
0
].
p
=
(
Uint32
*
)
name
;
ptr
[
0
].
sz
=
(
strLen
+
3
)
/
4
;
ptr
[
0
].
sz
=
(
strLen
+
3
)
/
4
;
#ifndef IGNORE_VALGRIND_WARNINGS
if
(
strLen
&
3
)
{
Uint32
pad
=
0
;
m_buffer
.
clear
();
m_buffer
.
append
(
name
,
strLen
);
m_buffer
.
append
(
&
pad
,
4
);
ptr
[
0
].
p
=
(
Uint32
*
)
m_buffer
.
get_data
();
}
#endif
int
r
=
dictSignal
(
&
tSignal
,
ptr
,
1
,
int
r
=
dictSignal
(
&
tSignal
,
ptr
,
1
,
-
1
,
// any node
-
1
,
// any node
WAIT_GET_TAB_INFO_REQ
,
WAIT_GET_TAB_INFO_REQ
,
DICT_WAITFOR_TIMEOUT
,
100
);
DICT_WAITFOR_TIMEOUT
,
100
);
if
(
r
)
if
(
r
)
{
{
dst
.
m_id
=
-
1
;
dst
.
m_version
=
~
0
;
DBUG_PRINT
(
"info"
,
(
"get_filegroup failed dictSignal"
));
DBUG_PRINT
(
"info"
,
(
"get_filegroup failed dictSignal"
));
DBUG_RETURN
(
-
1
);
DBUG_RETURN
(
-
1
);
}
}
...
@@ -4767,6 +4781,17 @@ NdbDictInterface::get_file(NdbFileImpl & dst,
...
@@ -4767,6 +4781,17 @@ NdbDictInterface::get_file(NdbFileImpl & dst,
ptr
[
0
].
p
=
(
Uint32
*
)
name
;
ptr
[
0
].
p
=
(
Uint32
*
)
name
;
ptr
[
0
].
sz
=
(
strLen
+
3
)
/
4
;
ptr
[
0
].
sz
=
(
strLen
+
3
)
/
4
;
#ifndef IGNORE_VALGRIND_WARNINGS
if
(
strLen
&
3
)
{
Uint32
pad
=
0
;
m_buffer
.
clear
();
m_buffer
.
append
(
name
,
strLen
);
m_buffer
.
append
(
&
pad
,
4
);
ptr
[
0
].
p
=
(
Uint32
*
)
m_buffer
.
get_data
();
}
#endif
int
r
=
dictSignal
(
&
tSignal
,
ptr
,
1
,
int
r
=
dictSignal
(
&
tSignal
,
ptr
,
1
,
node
,
node
,
WAIT_GET_TAB_INFO_REQ
,
WAIT_GET_TAB_INFO_REQ
,
...
@@ -4834,7 +4859,8 @@ NdbDictInterface::parseFileInfo(NdbFileImpl &dst,
...
@@ -4834,7 +4859,8 @@ NdbDictInterface::parseFileInfo(NdbFileImpl &dst,
}
}
dst
.
m_type
=
(
NdbDictionary
::
Object
::
Type
)
f
.
FileType
;
dst
.
m_type
=
(
NdbDictionary
::
Object
::
Type
)
f
.
FileType
;
dst
.
m_id
=
f
.
FileNo
;
dst
.
m_id
=
f
.
FileId
;
dst
.
m_version
=
f
.
FileVersion
;
dst
.
m_size
=
((
Uint64
)
f
.
FileSizeHi
<<
32
)
|
(
f
.
FileSizeLo
);
dst
.
m_size
=
((
Uint64
)
f
.
FileSizeHi
<<
32
)
|
(
f
.
FileSizeLo
);
dst
.
m_path
.
assign
(
f
.
FileName
);
dst
.
m_path
.
assign
(
f
.
FileName
);
...
...
storage/ndb/src/ndbapi/ndberror.c
View file @
e82605bc
...
@@ -386,6 +386,7 @@ ErrorBundle ErrorCodes[] = {
...
@@ -386,6 +386,7 @@ ErrorBundle ErrorCodes[] = {
{
768
,
DMEC
,
SE
,
"Cant drop filegroup, filegroup is used"
},
{
768
,
DMEC
,
SE
,
"Cant drop filegroup, filegroup is used"
},
{
769
,
DMEC
,
SE
,
"Drop undofile not supported, drop logfile group instead"
},
{
769
,
DMEC
,
SE
,
"Drop undofile not supported, drop logfile group instead"
},
{
770
,
DMEC
,
SE
,
"Cant drop file, file is used"
},
{
770
,
DMEC
,
SE
,
"Cant drop file, file is used"
},
{
774
,
DMEC
,
SE
,
"Invalid schema object for drop"
},
{
241
,
HA_ERR_TABLE_DEF_CHANGED
,
SE
,
"Invalid schema object version"
},
{
241
,
HA_ERR_TABLE_DEF_CHANGED
,
SE
,
"Invalid schema object version"
},
{
283
,
HA_ERR_NO_SUCH_TABLE
,
SE
,
"Table is being dropped"
},
{
283
,
HA_ERR_NO_SUCH_TABLE
,
SE
,
"Table is being dropped"
},
{
284
,
HA_ERR_TABLE_DEF_CHANGED
,
SE
,
"Table not defined in transaction coordinator"
},
{
284
,
HA_ERR_TABLE_DEF_CHANGED
,
SE
,
"Table not defined in transaction coordinator"
},
...
...
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