mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
address BUILD
get build working git-svn-id: file:///svn/mysql/tokudb-engine/src@11257 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
9d1f62c80e
commit
255c8e2214
1 changed files with 2 additions and 2 deletions
|
@ -3552,7 +3552,7 @@ static int create_sub_table(const char *table_name, int flags , DBT* row_descrip
|
|||
|
||||
file->set_flags(file, flags);
|
||||
|
||||
error = file->set_descriptor(file, 0, row_descriptor, toku_dbt_up);
|
||||
error = file->set_descriptor(file, 1, row_descriptor, toku_dbt_up);
|
||||
if (error) {
|
||||
DBUG_PRINT("error", ("Got error: %d when setting row descriptor for table '%s'", error, table_name));
|
||||
goto exit;
|
||||
|
@ -3855,7 +3855,7 @@ int ha_tokudb::create(const char *name, TABLE * form, HA_CREATE_INFO * create_in
|
|||
false,
|
||||
NULL
|
||||
);
|
||||
error = status_block->set_descriptor(status_block, 0, &row_descriptor, toku_dbt_up);
|
||||
error = status_block->set_descriptor(status_block, 1, &row_descriptor, toku_dbt_up);
|
||||
if (error) {
|
||||
goto cleanup;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue