Fix pool score CI regressions

This commit is contained in:
fawney19
2026-05-12 02:17:19 +08:00
parent b9e62d1667
commit c578689356
5 changed files with 14 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ use tracing::info;
// Generated by build.rs from schema/bootstrap/postgres.
pub(crate) static EMPTY_DATABASE_SNAPSHOT_SQL: &str =
include_str!(concat!(env!("OUT_DIR"), "/empty_database_snapshot.sql"));
pub(crate) const EMPTY_DATABASE_SNAPSHOT_CUTOFF_VERSION: i64 = 20260511120000;
pub(crate) const EMPTY_DATABASE_SNAPSHOT_CUTOFF_VERSION: i64 = 20260511130000;
const PUBLIC_BASE_TABLE_COUNT_SQL: &str = r#"
SELECT COUNT(*)::BIGINT

View File

@@ -300,6 +300,7 @@ fn empty_database_snapshot_covers_current_cutoff_versions() {
20260510120000,
20260511000000,
20260511120000,
20260511130000,
]
);
}
@@ -564,7 +565,8 @@ fn mysql_and_sqlite_migrations_include_enabled_incrementals() {
20260509000000,
20260509120000,
20260510120000,
20260511120000
20260511120000,
20260511130000,
]
);
assert_eq!(
@@ -576,7 +578,8 @@ fn mysql_and_sqlite_migrations_include_enabled_incrementals() {
20260509000000,
20260509120000,
20260510120000,
20260511120000
20260511120000,
20260511130000,
]
);
}
@@ -1088,6 +1091,7 @@ fn pending_migrations_from_applied_skips_versions_already_applied() {
20260510120000,
20260511000000,
20260511120000,
20260511130000,
]
);
}