ArroyoSystems / arroyo

Distributed stream processing engine in Rust

Home Page:https://arroyo.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conflicting Names Between UI Connector and `CREATE TABLE ... WITH` Lead to Ambiguous Precedence

mrasputin opened this issue · comments

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