This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch kafka-sql-sample in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git
commit a9569b5c0f3a82ee00503d4f766679b659eae4e7 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Oct 8 15:27:52 2021 +0200 Kafka SQL Example: Added table.sql script --- profiling/kafka-sql/script/table.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/profiling/kafka-sql/script/table.sql b/profiling/kafka-sql/script/table.sql new file mode 100644 index 0000000..8bce6cd --- /dev/null +++ b/profiling/kafka-sql/script/table.sql @@ -0,0 +1 @@ +CREATE TABLE accounts ( user_id serial PRIMARY KEY, username VARCHAR ( 50 ) NOT NULL, city VARCHAR ( 50 ) NOT NULL);