We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba7234 commit bb109aeCopy full SHA for bb109ae
storage/innobase/page/page0page.cc
@@ -480,7 +480,7 @@ page_create_zip(
480
481
/* PAGE_MAX_TRX_ID or PAGE_ROOT_AUTO_INC are always 0 for
482
temporary tables. */
483
- ut_ad(!dict_table_is_temporary(index->table) || max_trx_id == 0);
+ ut_ad(max_trx_id == 0 || !dict_table_is_temporary(index->table));
484
/* In secondary indexes and the change buffer, PAGE_MAX_TRX_ID
485
must be zero on non-leaf pages. max_trx_id can be 0 when the
486
index consists of an empty root (leaf) page. */
0 commit comments