Commit 143aa19a authored by marko's avatar marko

branches/zip: dict_build_table_def_step(): Refuse to create a compressed

table in the system tablespace.
parent 6c7431b2
......@@ -273,6 +273,11 @@ dict_build_table_def_step(
dict_table_zip_size(table), &mtr);
mtr_commit(&mtr);
} else {
/* Create in the system tablespace: disallow compression */
if (table->flags & DICT_TF_COMPRESSED_MASK) {
return(DB_ERROR);
}
}
row = dict_create_sys_tables_tuple(table, node->heap);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment