Skip to content

Commit

Permalink
fix schema-registry test. see #8124
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh committed Mar 13, 2023
1 parent 15b631a commit faa8514
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion integration_tests/schema-registry/create_source.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ CREATE SOURCE student WITH (
properties.bootstrap.server = 'message_queue:29092',
scan.startup.mode = 'earliest'
)
ROW FORMAT avro message 'student'
ROW FORMAT avro
row schema location confluent schema registry 'http://message_queue:8081';
7 changes: 3 additions & 4 deletions integration_tests/schema-registry/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ This demo shows how to ingest Avro data into RisingWave with [Schema Registry](h

At the beginning, there's a datagen process that ingests Avro data into Redpanda (a Kafka-compatible message queue). The Avro schema is as follows:

- ** Version 1 **
- **Version 1**

```json
{
Expand Down Expand Up @@ -38,8 +38,7 @@ At the beginning, there's a datagen process that ingests Avro data into Redpanda
}
```


- ** Version 2 **
- **Version 2**

```json
{
Expand Down Expand Up @@ -91,6 +90,6 @@ CREATE SOURCE student WITH (
properties.bootstrap.server = 'message_queue:29092',
scan.startup.mode = 'earliest'
)
ROW FORMAT avro message 'student'
ROW FORMAT avro
row schema location confluent schema registry 'http://message_queue:8081';
```

0 comments on commit faa8514

Please sign in to comment.