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
Some of the tables we work with have numeric column names (e.g. "1" or "0"). We found that delta-kusto does not escape these names appropriately and the commands that are produced or syntatically invalid.
For example, delta-kusto will produce this command
.create-merge table TableWithNumberColumns (0:string, 1:string, ['foo']:string) with (folder="", docstring="")
When it should be
.create-merge table TableWithNumberColumns (['0']:string, ['1']:string, ['foo']:string) with (folder="", docstring="")
Full steps to reproduce the issue:
Starting with a database called logs, create a table using this command
Some of the tables we work with have numeric column names (e.g. "1" or "0"). We found that delta-kusto does not escape these names appropriately and the commands that are produced or syntatically invalid.
For example, delta-kusto will produce this command
When it should be
Full steps to reproduce the issue:
Starting with a database called logs, create a table using this command
Create a parameter file for delta-kusto that will pull the state of the database
delta-kusto produces a delta file that looks like
Expected that the columns 0, and 1 would be escaped
The text was updated successfully, but these errors were encountered: