gfphoenix78 commented on code in PR #1064: URL: https://github.com/apache/cloudberry/pull/1064#discussion_r2096697038
########## configure.ac: ########## @@ -1749,6 +1749,13 @@ fi AC_SUBST(LDAP_LIBS_FE) AC_SUBST(LDAP_LIBS_BE) +# for contrib/pax +if test "$enable_pax" = yes; then + if test "$enable_shared_postgres_backend" = no; then + AC_MSG_ERROR([pax support requires --enable-shared-postgres-backend]) + fi +fi + Review Comment: shared library libpostgres.so seems only required by unit test in pax_storage. Is it possible to skip unit test for pax and give some warning messages if unit test is suppressed? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
