Skip to content

Commit

Permalink
PS-5932: Update PerconaFT submodule
Browse files Browse the repository at this point in the history
Also fixes the use of permission parameters where it is actually used now.
  • Loading branch information
dutow committed Sep 11, 2019
1 parent 8ab5ca1 commit d5eafde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion storage/tokudb/PerconaFT
4 changes: 2 additions & 2 deletions storage/tokudb/ha_tokudb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ int ha_tokudb::open_main_dictionary(
NULL,
DB_BTREE,
open_flags,
0);
S_IWUSR);
if (error) {
goto exit;
}
Expand Down Expand Up @@ -1394,7 +1394,7 @@ int ha_tokudb::open_secondary_dictionary(
}


error = (*ptr)->open(*ptr, txn, newname, NULL, DB_BTREE, open_flags, 0);
error = (*ptr)->open(*ptr, txn, newname, NULL, DB_BTREE, open_flags, S_IWUSR);
if (error) {
my_errno = error;
goto cleanup;
Expand Down
4 changes: 2 additions & 2 deletions storage/tokudb/tokudb_status.h
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ int create(
name,
NULL,
DB_BTREE, DB_CREATE | DB_EXCL,
0);
S_IWUSR);
}
if (error == 0) {
*status_db_ptr = status_db;
Expand Down Expand Up @@ -230,7 +230,7 @@ int open(
NULL,
DB_BTREE,
DB_THREAD,
0);
S_IWUSR);
}
if (error == 0) {
uint32_t pagesize = 0;
Expand Down

0 comments on commit d5eafde

Please sign in to comment.