This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new d38a17e388 Use correct table naming pattern common for more db types
d38a17e388 is described below
commit d38a17e388140ed5ba00cfdfda00ea90fefd85c6
Author: Lukas Lowinger <[email protected]>
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")