File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,9 @@ async fn publication_changes_are_correctly_handled() {
193
193
if let Some ( server_version) = database. server_version ( )
194
194
&& server_version. get ( ) <= 150000
195
195
{
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
+ ) ;
197
199
return ;
198
200
}
199
201
@@ -363,7 +365,9 @@ async fn publication_for_all_tables_in_schema_ignores_new_tables_until_restart()
363
365
if let Some ( server_version) = database. server_version ( )
364
366
&& server_version. get ( ) <= 150000
365
367
{
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
+ ) ;
367
371
return ;
368
372
}
369
373
You can’t perform that action at this time.
0 commit comments