created the stream using schema-registry without specifying the filed name refer below
CREATE STREAM sample_avro WITH (KAFKA_TOPIC='test',VALUE_FORMAT='AVRO');
Topic name test
contains a few fields and values when described the topic all the fields in topic are shown in the uppercase example given below
ksql> describe sample_avro;
Name : SAMPLE_AVRO
Field | Type
---------------------------------------
ROWTIME | BIGINT (system)
ROWKEY | VARCHAR(STRING) (system)
ID | INTEGER
FIRSTNAME | VARCHAR(STRING)
LASTNAME | VARCHAR(STRING)
EMAIL | VARCHAR(STRING)
REG_DATE | BIGINT
from this link ksql-cases filed case sensitivity is maintained only by specifying a filed name while creating the stream.
suppose topic contains 1000 record user cannot create the stream by specifying all the field name.
so kindly help me to slove this issue