Skip to content

Commit

Permalink
Use correct table naming pattern common for more db types
Browse files Browse the repository at this point in the history
  • Loading branch information
llowinge authored and jamesnetherton committed Jul 2, 2024
1 parent e342e4e commit d38a17e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void configure() throws Exception {
.to(jpaEndpoint + "?namedQuery=findByName&parameters=#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")
Expand Down

0 comments on commit d38a17e

Please sign in to comment.