This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 3.8.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/3.8.x by this push: new 5d15224712 Use correct table naming pattern common for more db types 5d15224712 is described below commit 5d152247127ee2bd2aee537ab866cb7a45cb8938 Author: Lukas Lowinger <llowi...@redhat.com> AuthorDate: Mon Jul 1 17:23:43 2024 +0200 Use correct table naming pattern common for more db types --- .../main/java/org/apache/camel/quarkus/component/jpa/it/JpaRoute.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/jpa/src/main/java/org/apache/camel/quarkus/component/jpa/it/JpaRoute.java b/integration-tests/jpa/src/main/java/org/apache/camel/quarkus/component/jpa/it/JpaRoute.java index 737dcd7bd1..46f5c1e084 100644 --- a/integration-tests/jpa/src/main/java/org/apache/camel/quarkus/component/jpa/it/JpaRoute.java +++ b/integration-tests/jpa/src/main/java/org/apache/camel/quarkus/component/jpa/it/JpaRoute.java @@ -48,7 +48,7 @@ public class JpaRoute extends RouteBuilder { .to(jpaEndpoint + "?namedQuery=findByName¶meters=#parameters"); from("direct:nativeQuery") .to(jpaEndpoint + "?resultClass=org.apache.camel.quarkus.component.jpa.it.model.Fruit" + - "&nativeQuery=SELECT * FROM fruit WHERE id = :id"); + "&nativeQuery=SELECT * FROM Fruit WHERE id = :id"); from("direct:store") .to(jpaEndpoint); from("direct:remove")