You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1456
-
SET GLOBAL expire_logs_days = 11;
1457
-
Warnings:
1458
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1459
-
SET GLOBAL expire_logs_days = 99;
1460
-
Warnings:
1461
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1462
-
needs to pass with no warnings (99)
1463
-
SELECT @@global.expire_logs_days;
1464
-
@@global.expire_logs_days
1465
-
99
1466
-
Warnings:
1467
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1468
-
SET GLOBAL expire_logs_days = @old_eld;
1469
-
Warnings:
1470
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1471
-
SET GLOBAL binlog_expire_logs_seconds= @old_seconds;
1472
-
SET @@global.binlog_expire_logs_seconds=0;
1473
-
SET @@global.expire_logs_days = 1;
1474
-
Warnings:
1475
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1476
-
SET @@global.binlog_expire_logs_seconds=5;
1477
-
ERROR HY000: The option expire_logs_days cannot be used together with option binlog_expire_logs_seconds. To set one, first unset the other by setting it to 0.
1478
-
SET @@global.expire_logs_days=0;
1479
-
Warnings:
1480
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
1481
-
SET @@global.binlog_expire_logs_seconds=5;
1482
-
SET @@global.binlog_expire_logs_seconds=@old_seconds;
1483
-
SET @@global.expire_logs_days=@old_eld;
1484
-
Warnings:
1485
-
Warning 1287 '@@expire_logs_days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
0 commit comments