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
-- override a property:SET'ksql.streams.num.stream.threads'='2';
-- create a MV:
CREATE STREAM FOO (ID INT) WITH (KAFKA_TOPIC='FOO', PARTITIONS=1,VALUE_FORMAT='json');
CREATE STREAM BAR ASSELECT*FROM FOO;
-- explain the query created in the step above:
EXPLAIN CSAS_BAR_0;
Expected behavior
...
Overridden Properties
---------------------
Property | Value
ksql.streams.num.stream.threads | 2
Actual behaviour
...
Overridden Properties
---------------------
Property | Value
ksql.streams.num.stream.threads |
i.e. the value for the overridden property is missing
The text was updated successfully, but these errors were encountered:
To Reproduce
Expected behavior
Actual behaviour
i.e. the value for the overridden property is missing
The text was updated successfully, but these errors were encountered: