Skip to content

Commit b9c18ed

Browse files
Update skip message to be more descriptive
1 parent 7d97312 commit b9c18ed

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

etl/tests/integration/pipeline_test.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ async fn publication_changes_are_correctly_handled() {
193193
if let Some(server_version) = database.server_version()
194194
&& server_version.get() <= 150000
195195
{
196-
println!("Skipping test for PostgreSQL version <= 15");
196+
println!(
197+
"Skipping test for PostgreSQL version <= 15, CREATE PUBLICATION FOR TABLES IN SCHEMA is not supported"
198+
);
197199
return;
198200
}
199201

@@ -363,7 +365,9 @@ async fn publication_for_all_tables_in_schema_ignores_new_tables_until_restart()
363365
if let Some(server_version) = database.server_version()
364366
&& server_version.get() <= 150000
365367
{
366-
println!("Skipping test for PostgreSQL version <= 15");
368+
println!(
369+
"Skipping test for PostgreSQL version <= 15, CREATE PUBLICATION FOR TABLES IN SCHEMA is not supported"
370+
);
367371
return;
368372
}
369373

0 commit comments

Comments
 (0)