This is an automated email from the ASF dual-hosted git repository. zhfeng pushed a change to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from b89bcca36a Fixup Test also GITHUB_BASE_REF to checkout the right examples branch (#4775) new bd5b43664b Ref#4596 Cover different db types for jdbc new ac03cf63df Cxf fixes (#4771) The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../cxf/soap/server/it/CxfSoapRoutes.java | 32 ++---- .../cxf/soap/it/ws/trust/CxfWsTrustTest.java | 23 ++-- integration-tests/jdbc/README.adoc | 26 +++++ integration-tests/jdbc/pom.xml | 16 +-- .../quarkus/component/jdbc/CamelResource.java | 116 ++++++++++++++++----- .../camel/quarkus/component/jdbc/JdbcRoutes.java | 28 +++-- .../jdbc/src/main/resources/application.properties | 7 +- .../src/main/resources/sql/db2.sql} | 8 +- .../src/main/resources/sql/derby.sql} | 8 +- .../src/main/resources/sql/droptables.sql} | 7 +- .../src/main/resources/sql/h2.sql} | 8 +- .../src/main/resources/sql/inserts.sql} | 10 +- .../src/main/resources/sql/mariadb.sql} | 8 +- .../src/main/resources/sql/mssql.sql} | 7 +- .../src/main/resources/sql/mysql.sql} | 8 +- .../src/main/resources/sql/oracle.sql} | 15 +-- .../src/main/resources/sql/postgresql.sql} | 8 +- .../quarkus/component/jdbc/CamelJdbcTest.java | 73 ++++++------- 18 files changed, 240 insertions(+), 168 deletions(-) create mode 100644 integration-tests/jdbc/README.adoc copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/db2.sql} (68%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/derby.sql} (72%) copy integration-tests/{sql/src/main/resources/sql/common/selectProjectsAsBoolean.sql => jdbc/src/main/resources/sql/droptables.sql} (91%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/h2.sql} (76%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/inserts.sql} (72%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/mariadb.sql} (76%) copy integration-tests/{sql/src/main/resources/sql/common/selectProjectsAsBoolean.sql => jdbc/src/main/resources/sql/mssql.sql} (76%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/mysql.sql} (76%) copy integration-tests/{mybatis/src/main/resources/insert.sql => jdbc/src/main/resources/sql/oracle.sql} (68%) copy integration-tests/{debezium/src/test/resources/initMysql.sql => jdbc/src/main/resources/sql/postgresql.sql} (76%)