From d38a17e388140ed5ba00cfdfda00ea90fefd85c6 Mon Sep 17 00:00:00 2001 From: Lukas Lowinger Date: Mon, 1 Jul 2024 17:23:43 +0200 Subject: [PATCH] Use correct table naming pattern common for more db types --- .../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 737dcd7bd101..46f5c1e08474 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 void configure() throws Exception { .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")