, but when I tried with the latest 0.19.0 version using 'CREATE OR REPLACE' syntax ended up with the following error.
ksql> CREATE STREAM profile (profileId INT, name VARCHAR)
> WITH (kafka_topic='profiles', value_format='json', partitions=1);
Message
----------------
Stream created
----------------
ksql> CREATE OR REPLACE STREAM profile (profileId BIGINT, name VARCHAR)
> WITH (kafka_topic='profiles', value_format='json');
Cannot upgrade data source: DataSource '`PROFILE`' has schema = `PROFILEID` INTEGER, `NAME` STRING which is not upgradeable to `PROFILEID` BIGINT, `NAME` STRING. (The following columns are changed, missing or reordered: [`PROFILEID` INTEGER])