SQL-FLUFF Found unparsable section '()' - Linting table_valued_function with special character in name

1.5k Views Asked by At

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

0

There are 0 best solutions below