mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
blah
git-svn-id: file:///svn/mysql/tokudb-engine/src@11211 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
60bda4b670
commit
5ca27b565f
1 changed files with 15 additions and 14 deletions
|
@ -2,6 +2,7 @@
|
|||
#pragma implementation // gcc: Class implementation
|
||||
#endif
|
||||
|
||||
|
||||
#define MYSQL_SERVER 1
|
||||
#include "mysql_priv.h"
|
||||
#include "hatoku_cmp.h"
|
||||
|
@ -3837,20 +3838,20 @@ int ha_tokudb::create(const char *name, TABLE * form, HA_CREATE_INFO * create_in
|
|||
if (!(error = (db_create(&status_block, db_env, 0)))) {
|
||||
make_name(newname, name, "status");
|
||||
fn_format(name_buff, newname, "", 0, MY_UNPACK_FILENAME);
|
||||
//
|
||||
// create a row descriptor that is the same as a hidden primary key
|
||||
//
|
||||
row_descriptor.size = create_toku_key_descriptor(
|
||||
row_desc_buff,
|
||||
true,
|
||||
false,
|
||||
NULL,
|
||||
false,
|
||||
NULL
|
||||
);
|
||||
error = status_block->set_descriptor(status_block, &row_descriptor);
|
||||
if (error) {
|
||||
goto cleanup;
|
||||
//
|
||||
// create a row descriptor that is the same as a hidden primary key
|
||||
//
|
||||
row_descriptor.size = create_toku_key_descriptor(
|
||||
row_desc_buff,
|
||||
true,
|
||||
false,
|
||||
NULL,
|
||||
false,
|
||||
NULL
|
||||
);
|
||||
error = status_block->set_descriptor(status_block, &row_descriptor);
|
||||
if (error) {
|
||||
goto cleanup;
|
||||
}
|
||||
if (!(error = (status_block->open(status_block, NULL, name_buff, NULL, DB_BTREE, DB_CREATE, 0)))) {
|
||||
uint version = HA_TOKU_VERSION;
|
||||
|
|
Loading…
Add table
Reference in a new issue