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
44e572df
Commit
44e572df
authored
Jan 31, 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/mysql51
parents
060122de
f4f0f1d6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
0 deletions
+41
-0
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+27
-0
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+1
-0
sql/handler.h
sql/handler.h
+2
-0
sql/sql_show.cc
sql/sql_show.cc
+11
-0
No files found.
sql/ha_ndbcluster.cc
View file @
44e572df
...
...
@@ -8857,6 +8857,33 @@ ha_ndbcluster::generate_scan_filter(Ndb_cond_stack *ndb_cond_stack,
DBUG_RETURN
(
0
);
}
/*
get table space info for SHOW CREATE TABLE
*/
char
*
ha_ndbcluster
::
get_tablespace_create_info
()
{
const
char
tablespace_key
[]
=
" TABLESPACE "
;
const
char
storage_key
[]
=
" STORAGE DISK"
;
char
*
str
=
0
;
Ndb
*
ndb
=
get_ndb
();
NDBDICT
*
ndbdict
=
ndb
->
getDictionary
();
ndb
->
setDatabaseName
(
m_dbname
);
const
NDBTAB
*
ndbtab
=
ndbdict
->
getTable
(
m_tabname
);
if
(
ndbtab
==
0
)
return
0
;
// TODO retrieve table space name if there is one
return
0
;
const
char
*
tablespace_name
=
"<name>"
;
uint
len
=
sizeof
(
tablespace_key
)
+
strlen
(
tablespace_name
)
+
sizeof
(
storage_key
);
str
=
my_malloc
(
len
,
MYF
(
0
));
strxnmov
(
str
,
len
,
tablespace_key
,
tablespace_name
,
storage_key
,
NullS
);
return
(
str
);
}
/*
Implements the SHOW NDB STATUS command.
*/
...
...
sql/ha_ndbcluster.h
View file @
44e572df
...
...
@@ -700,6 +700,7 @@ private:
uint
set_up_partition_info
(
partition_info
*
part_info
,
TABLE
*
table
,
void
*
tab
);
char
*
get_tablespace_create_info
();
int
set_range_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
,
...
...
sql/handler.h
View file @
44e572df
...
...
@@ -1713,6 +1713,8 @@ public:
{
return
FALSE
;
}
virtual
char
*
get_foreign_key_create_info
()
{
return
(
NULL
);}
/* gets foreign key create string from InnoDB */
virtual
char
*
get_tablespace_create_info
()
{
return
(
NULL
);}
/* gets tablespace create string from handler */
/* used in ALTER TABLE; 1 if changing storage engine is allowed */
virtual
bool
can_switch_engines
()
{
return
1
;
}
/* used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
...
...
sql/sql_show.cc
View file @
44e572df
...
...
@@ -1135,6 +1135,17 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
packet
->
append
(
STRING_WITH_LEN
(
"
\n
)"
));
if
(
!
(
thd
->
variables
.
sql_mode
&
MODE_NO_TABLE_OPTIONS
)
&&
!
foreign_db_mode
)
{
/*
Get possible table space definitions and append them
to the CREATE TABLE statement
*/
if
((
for_str
=
file
->
get_tablespace_create_info
()))
{
packet
->
append
(
for_str
,
strlen
(
for_str
));
my_free
(
for_str
,
MYF
(
0
));
}
/*
IF check_create_info
THEN add ENGINE only if it was used when creating the table
...
...
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