You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that schema registry supports types beyond just AVRO (and also pluggable types) it makes sense to rename AVRO_SCHEMA_ID to SCHEMA_ID so that we don't get things like:
ksql> CREATE STREAM json WITH(KAFKA_TOPIC='json', VALUE_FORMAT='json');
ksql> DESCRIBE EXTENDED JSON;
Name : JSON
Type : STREAM
Key field :
Timestamp field : Not set - using <ROWTIME>
Key format : KAFKA
Value format : JSON
Kafka topic : json (partitions: 1, replication: 1)
Statement : CREATE STREAM JSON (F1 STRING) WITH (AVRO_SCHEMA_ID=2, KAFKA_TOPIC='json', VALUE_FORMAT='json');
Field | Type
-------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | VARCHAR(STRING) (system)
F1 | VARCHAR(STRING)
-------------------------------------
The text was updated successfully, but these errors were encountered:
Now that schema registry supports types beyond just AVRO (and also pluggable types) it makes sense to rename
AVRO_SCHEMA_ID
toSCHEMA_ID
so that we don't get things like:The text was updated successfully, but these errors were encountered: