This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new a321f87 Regen a321f87 is described below commit a321f87af4392390a05d114c16845bba8f70f1e6 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Apr 6 09:09:28 2020 +0200 Regen --- docs/components/modules/ROOT/pages/jooq-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/modules/ROOT/pages/jooq-component.adoc b/docs/components/modules/ROOT/pages/jooq-component.adoc index 61b616d..2a30e11 100644 --- a/docs/components/modules/ROOT/pages/jooq-component.adoc +++ b/docs/components/modules/ROOT/pages/jooq-component.adoc @@ -33,7 +33,7 @@ SQL could be executed using JOOQ's objects "Query" or "ResultQuery". Also SQL query could be specified inside URI: [source,java] ---- -from("jooq://org.apache.camel.component.jooq.db.tables.records.BookStoreRecord?query=query=select * from book_store x where x.name = 'test'").to("bean:myBusinessLogic"); +from("jooq://org.apache.camel.component.jooq.db.tables.records.BookStoreRecord?query=select * from book_store x where x.name = 'test'").to("bean:myBusinessLogic"); ---- See examples below.