Skip to content

Commit 26e9da4

Browse files
committed
Turning back on binlog checksums by setting the binlog_checksum sys var default value back to CRC32
1 parent 1d0cade commit 26e9da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/variables/system_variables.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ var systemVars = map[string]sql.SystemVariable{
388388
Dynamic: true,
389389
SetVarHintApplies: false,
390390
Type: types.NewSystemStringType("binlog_checksum"),
391-
Default: "NONE", // TODO: MySQL's default is CRC32
391+
Default: "CRC32",
392392
},
393393
"binlog_gtid_simple_recovery": &sql.MysqlSystemVariable{
394394
Name: "binlog_gtid_simple_recovery",

0 commit comments

Comments
 (0)