Skip to content

Commit

Permalink
address the comment
Browse files Browse the repository at this point in the history
Signed-off-by: yisaer <disxiaofei@163.com>
  • Loading branch information
Yisaer committed Nov 17, 2022
1 parent 74ca0c2 commit efbf548
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions infoschema/tables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1553,15 +1553,14 @@ func TestVariablesInfo(t *testing.T) {
// See session/bootstrap.go:doDMLWorks() for where the exceptions are defined.
stmt := tk.MustQuery(`SELECT variable_name, default_value, current_value FROM information_schema.variables_info WHERE current_value != default_value and default_value != '' ORDER BY variable_name`)
stmt.Check(testkit.Rows(
"last_sql_use_alloc OFF ON", // for test stability
"tidb_enable_auto_analyze ON OFF", // always changed for tests
"tidb_enable_collect_execution_info ON OFF", // for test stability
"tidb_enable_mutation_checker OFF ON", // for new installs
"tidb_enable_plan_replayer_capture OFF false", // for enable plan replayer capture
"tidb_mem_oom_action CANCEL LOG", // always changed for tests
"tidb_row_format_version 1 2", // for new installs
"tidb_txn_assertion_level OFF FAST", // for new installs
"timestamp 0 123456789", // always dynamic
"last_sql_use_alloc OFF ON", // for test stability
"tidb_enable_auto_analyze ON OFF", // always changed for tests
"tidb_enable_collect_execution_info ON OFF", // for test stability
"tidb_enable_mutation_checker OFF ON", // for new installs
"tidb_mem_oom_action CANCEL LOG", // always changed for tests
"tidb_row_format_version 1 2", // for new installs
"tidb_txn_assertion_level OFF FAST", // for new installs
"timestamp 0 123456789", // always dynamic
))
}

Expand Down

0 comments on commit efbf548

Please sign in to comment.