-
Rahul Agarkar authored
Problem : --------- When a temporary table is created with the TABLESPACE innodb_file_per_table clause, the option innodb_file_per_table is ignored and no error is thrown to the user. This results in creating the temporary table in the general temp tablespace. Solution : ---------- Validate the CREATE TEMPORARY TABLE command with TABLESPACE clause and return error if innodb_file_per_table option is used. Return error if the STRICT mode is turned on and return a warning message if the STRICT mode is turned off. Reviewed-by:
Debarun Banerjee <(debarun.banerjee@oracle.com)> RB: 18463
Rahul Agarkar authoredProblem : --------- When a temporary table is created with the TABLESPACE innodb_file_per_table clause, the option innodb_file_per_table is ignored and no error is thrown to the user. This results in creating the temporary table in the general temp tablespace. Solution : ---------- Validate the CREATE TEMPORARY TABLE command with TABLESPACE clause and return error if innodb_file_per_table option is used. Return error if the STRICT mode is turned on and return a warning message if the STRICT mode is turned off. Reviewed-by:
Debarun Banerjee <(debarun.banerjee@oracle.com)> RB: 18463
Loading