Skip to content

Commit f133be8

Browse files
authored
Merge pull request #2434 from dolthub/fulghum/com_binlog_prototype
Fixing the default value for the `binlog_checksum` system variable
2 parents 8145826 + 26e9da4 commit f133be8

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)