In my sql-script I query some data like this:
SELECT *
FROM abc.[x/y/z]()
This query works completely fine
However sqlfluff lint
returns Found unparsable section '()'
.
Sqlfluff parsing works fine with regular table valued functions calls without '/' in the name:
SELECT *
FROM abc.[xyz]()
Is there a way to configure the sqlfluff parser or sqlfluff t-sql dialact to handle this syntax?
Note that I have selected the dialect t-sql