Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
12.0(EOL)
-
None
-
Not for Release Notes
Description
Logging temporary tables is enabled for statement logging with create_tmp_table_binlog_formats.
To get the error, we need to create a table LIKE t1, where t1 wasn't marked as logged.
set binlog_format='MIXED'; |
create temporary table t1 (x int); |
set create_tmp_table_binlog_formats='MIXED'; |
create temporary table t2 like t1; |
Execution result |
query 'create temporary table t2 like t1' failed:
|
ER_NO_SUCH_TABLE (1146): Table 'test.t2' doesn't exist
|
Attachments
Issue Links
- blocks
-
MDEV-35915 Implement Global temporary tables
-
- In Testing
-
- is caused by
-
MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable
-
- Closed
-