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() {
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
You can’t perform that action at this time.
0 commit comments