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
This is a large issue that needs to be broken out into smaller issues. The current tokenizer is quite simplistic and needs to be improved to be compliant with section 5 of this specification:
* Multiple Eventhubs
To support multiple subscriptions and namespaces we will allow a new peer type called EventHubGroup.
```sql
CREATE PEER customer_1 FROM EVENTHUB WITH (
subscription_id = 'my-sub-id',
resource_group = 'my-rg',
namespace = 'my-ns',
location = 'eastus',
metadata_db = '...'
);
CREATE PEER customer_2 FROM EVENTHUB WITH (
...
);
CREATE PEER eventhub_group_1 FROM EVENTHUBGROUP WITH (
customer_1,
customer_2
)
```
* adds test for eh group
---------
Co-authored-by: Amogh-Bharadwaj <[email protected]>
jmhain
added a commit
to jmhain/sqlparser-rs
that referenced
this issue
Mar 15, 2024
This is a large issue that needs to be broken out into smaller issues. The current tokenizer is quite simplistic and needs to be improved to be compliant with section 5 of this specification:
https://jakewheat.github.io/sql-overview/sql-2011-foundation-grammar.html#_5_lexical_elements
The text was updated successfully, but these errors were encountered: