This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git
The following commit(s) were added to refs/heads/main by this push: new 0171771 Removed wrong copy paste of command for postgresql example 0171771 is described below commit 0171771f55389b3941f2570a4f748bbd18190b12 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jul 13 14:16:40 2023 +0200 Removed wrong copy paste of command for postgresql example --- jbang/postgresql-gcp-secret-refresh/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jbang/postgresql-gcp-secret-refresh/README.adoc b/jbang/postgresql-gcp-secret-refresh/README.adoc index 26be897..c643ca2 100644 --- a/jbang/postgresql-gcp-secret-refresh/README.adoc +++ b/jbang/postgresql-gcp-secret-refresh/README.adoc @@ -165,7 +165,7 @@ postgres=# CREATE TABLE accounts ( city VARCHAR ( 50 ) NOT NULL ); CREATE TABLE -postgres=# postgres=# INSERT into accounts (username,city) VALUES ('andrea', 'Roma'); +postgres=# INSERT into accounts (username,city) VALUES ('andrea', 'Roma'); INSERT 0 1 postgres=# INSERT into accounts (username,city) VALUES ('John', 'New York'); INSERT 0 1