Skip to content

Commit

Permalink
Kafka/Flink: Fix DDL statement (#509)
Browse files Browse the repository at this point in the history
Changed-Wierd
  • Loading branch information
wierdvanderhaar authored Jul 3, 2024
1 parent e5d9c34 commit 17f277c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/apache-kafka-flink-streaming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ into your local `.env` file.
### Run the docker compose (and build the images)

```
docker compose up -d --build
docker-compose up -d --build
```

### Stop the docker compose
Expand Down Expand Up @@ -111,7 +111,7 @@ Create the table in CrateDB:

```sql
CREATE TABLE IF NOT EXISTS "doc"."weather_flink_sink" (
"inserted_at" TIMESTAMP WITHOUT TIME ZONE NOT NULL,
"inserted_at" TIMESTAMP WITH TIME ZONE NOT NULL GENERATED ALWAYS AS now(),
"location" OBJECT(DYNAMIC),
"current" OBJECT(DYNAMIC)
)
Expand Down

0 comments on commit 17f277c

Please sign in to comment.