We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d9c34 commit 17f277cCopy full SHA for 17f277c
application/apache-kafka-flink-streaming/README.md
@@ -40,7 +40,7 @@ into your local `.env` file.
40
### Run the docker compose (and build the images)
41
42
```
43
-docker compose up -d --build
+docker-compose up -d --build
44
45
46
### Stop the docker compose
@@ -111,7 +111,7 @@ Create the table in CrateDB:
111
112
```sql
113
CREATE TABLE IF NOT EXISTS "doc"."weather_flink_sink" (
114
- "inserted_at" TIMESTAMP WITHOUT TIME ZONE NOT NULL,
+ "inserted_at" TIMESTAMP WITH TIME ZONE NOT NULL GENERATED ALWAYS AS now(),
115
"location" OBJECT(DYNAMIC),
116
"current" OBJECT(DYNAMIC)
117
)
0 commit comments