Skip to content
Permalink
Browse files
Add STATS_PERSISTENT=0 to a test
This fixes up commit 314ed9f
and commit 9608773
  • Loading branch information
dr-m committed Nov 10, 2022
1 parent 6b671ae commit fef9d6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -154,7 +154,7 @@ id2 int NOT NULL,
d1 datetime,
d2 timestamp NOT NULL,
KEY id2 (id2)
) engine=innodb;
) engine=innodb stats_persistent=0;
insert into t2 values
(1,2,'2019-03-05 00:00:00','2019-03-06 00:00:00'),
(2,3,'2019-03-05 00:00:00','2019-03-06 00:00:00'),
@@ -141,7 +141,7 @@ CREATE TABLE t2 (
d1 datetime,
d2 timestamp NOT NULL,
KEY id2 (id2)
) engine=innodb;
) engine=innodb stats_persistent=0;

insert into t2 values
(1,2,'2019-03-05 00:00:00','2019-03-06 00:00:00'),

0 comments on commit fef9d6e

Please sign in to comment.