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
dd92e9a3
Commit
dd92e9a3
authored
Feb 13, 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
e1a316bc
efd6779c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+4
-4
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+1
-1
sql/handler.h
sql/handler.h
+1
-1
sql/sql_show.cc
sql/sql_show.cc
+1
-1
No files found.
sql/ha_ndbcluster.cc
View file @
dd92e9a3
...
@@ -8915,9 +8915,9 @@ ha_ndbcluster::generate_scan_filter(Ndb_cond_stack *ndb_cond_stack,
...
@@ -8915,9 +8915,9 @@ ha_ndbcluster::generate_scan_filter(Ndb_cond_stack *ndb_cond_stack,
/*
/*
get table space info for SHOW CREATE TABLE
get table space info for SHOW CREATE TABLE
*/
*/
char
*
ha_ndbcluster
::
get_tablespace_name
()
char
*
ha_ndbcluster
::
get_tablespace_name
(
THD
*
thd
)
{
{
Ndb
*
ndb
=
get_ndb
(
);
Ndb
*
ndb
=
check_ndb_in_thd
(
thd
);
NDBDICT
*
ndbdict
=
ndb
->
getDictionary
();
NDBDICT
*
ndbdict
=
ndb
->
getDictionary
();
NdbError
ndberr
;
NdbError
ndberr
;
Uint32
id
;
Uint32
id
;
...
@@ -8941,11 +8941,11 @@ char* ha_ndbcluster::get_tablespace_name()
...
@@ -8941,11 +8941,11 @@ char* ha_ndbcluster::get_tablespace_name()
}
}
err:
err:
if
(
ndberr
.
status
==
NdbError
::
TemporaryError
)
if
(
ndberr
.
status
==
NdbError
::
TemporaryError
)
push_warning_printf
(
current_
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
ER_GET_TEMPORARY_ERRMSG
,
ER
(
ER_GET_TEMPORARY_ERRMSG
),
ER_GET_TEMPORARY_ERRMSG
,
ER
(
ER_GET_TEMPORARY_ERRMSG
),
ndberr
.
code
,
ndberr
.
message
,
"NDB"
);
ndberr
.
code
,
ndberr
.
message
,
"NDB"
);
else
else
push_warning_printf
(
current_
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_ERROR
,
ER_GET_ERRMSG
,
ER
(
ER_GET_ERRMSG
),
ER_GET_ERRMSG
,
ER
(
ER_GET_ERRMSG
),
ndberr
.
code
,
ndberr
.
message
,
"NDB"
);
ndberr
.
code
,
ndberr
.
message
,
"NDB"
);
return
0
;
return
0
;
...
...
sql/ha_ndbcluster.h
View file @
dd92e9a3
...
@@ -724,7 +724,7 @@ private:
...
@@ -724,7 +724,7 @@ private:
uint
set_up_partition_info
(
partition_info
*
part_info
,
uint
set_up_partition_info
(
partition_info
*
part_info
,
TABLE
*
table
,
TABLE
*
table
,
void
*
tab
);
void
*
tab
);
char
*
get_tablespace_name
();
char
*
get_tablespace_name
(
THD
*
thd
);
int
set_range_data
(
void
*
tab
,
partition_info
*
part_info
);
int
set_range_data
(
void
*
tab
,
partition_info
*
part_info
);
int
set_list_data
(
void
*
tab
,
partition_info
*
part_info
);
int
set_list_data
(
void
*
tab
,
partition_info
*
part_info
);
int
complemented_pk_read
(
const
byte
*
old_data
,
byte
*
new_data
,
int
complemented_pk_read
(
const
byte
*
old_data
,
byte
*
new_data
,
...
...
sql/handler.h
View file @
dd92e9a3
...
@@ -1712,7 +1712,7 @@ public:
...
@@ -1712,7 +1712,7 @@ public:
{
return
FALSE
;
}
{
return
FALSE
;
}
virtual
char
*
get_foreign_key_create_info
()
virtual
char
*
get_foreign_key_create_info
()
{
return
(
NULL
);}
/* gets foreign key create string from InnoDB */
{
return
(
NULL
);}
/* gets foreign key create string from InnoDB */
virtual
char
*
get_tablespace_name
()
virtual
char
*
get_tablespace_name
(
THD
*
thd
)
{
return
(
NULL
);}
/* gets tablespace name from handler */
{
return
(
NULL
);}
/* gets tablespace name from handler */
/* used in ALTER TABLE; 1 if changing storage engine is allowed */
/* used in ALTER TABLE; 1 if changing storage engine is allowed */
virtual
bool
can_switch_engines
()
{
return
1
;
}
virtual
bool
can_switch_engines
()
{
return
1
;
}
...
...
sql/sql_show.cc
View file @
dd92e9a3
...
@@ -1138,7 +1138,7 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
...
@@ -1138,7 +1138,7 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
to the CREATE TABLE statement
to the CREATE TABLE statement
*/
*/
if
((
for_str
=
file
->
get_tablespace_name
()))
if
((
for_str
=
file
->
get_tablespace_name
(
thd
)))
{
{
packet
->
append
(
" TABLESPACE "
);
packet
->
append
(
" TABLESPACE "
);
packet
->
append
(
for_str
,
strlen
(
for_str
));
packet
->
append
(
for_str
,
strlen
(
for_str
));
...
...
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