getproperty on File makes internal use of dot notation problematic
albheim opened this issue · 1 comments
albheim commented
From a discourse thread.
Since getproperty on File
is defined to first look up if any field is in the internal lookup table
Lines 142 to 145 in cfb4ffb
we get a problem when using getproperty (i.e. dot syntax) to access the fields of the struct, as can be seen here
Line 940 in cfb4ffb
where if any of the column names from from the data read into f
(which is type File
) shares name with one of the fields that are accessed there, it will likely error or maybe do incorrect things at least.
In the linked thread this happened when one column had the name name
, which then errored.