tutorials icon indicating copy to clipboard operation
tutorials copied to clipboard

Document Support for Escaping Columns Names

Open kvnkho opened this issue 2 years ago • 0 comments

Previously, Fugue did not support column names with spaces. With changed to triad, we now can.

It needs to be updated here: https://fugue-tutorials.readthedocs.io/tutorials/advanced/schema_dataframes.html#schema

We can now do:

`a b`:int,b:str

Or to escape

`a``b`:int,b:str

where the column name will be a`b and b

kvnkho avatar Jan 03 '23 06:01 kvnkho