robertmu opened a new pull request, #26: URL: https://github.com/apache/cloudberry-gpbackup/pull/26
The integration test for stored procedures was failing on Cloudberry due to differences in pg_get_function_arguments behavior compared to GPDB 7. In Cloudberry (based onPostgreSQL 14), pg_get_function_arguments includes parameter modes (e.g., "IN") in the returned arguments string, while GPDB 7 omits them. This commit updates the test to expect the correct format for each database version: - Cloudberry: "IN a integer, IN b integer" - GPDB 7: "a integer, b integer" The underlying gpbackup functionality works correctly on both platforms; only the test expectations needed adjustment. Fixes: Integration test failure in predata_functions_queries_test.go -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudberry.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@cloudberry.apache.org For additional commands, e-mail: commits-h...@cloudberry.apache.org