Conflicting Names Between UI Connector and `CREATE TABLE ... WITH` Lead to Ambiguous Precedence
mrasputin opened this issue · comments
mrasputin commented
When UI connector has a name abc
, and then the following query would get constructed:
CREATE TABLE abc (
ftftf TEXT)
WITH (
connector = 'websocket',
endpoint = 'wss://...',
format = 'raw_string',
subscription_message = '{...}'
);
the UI connector will silently take precedence over CREATE TABLE WITH