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
Current behavior produces the below Exception: Exception: In TSDF's select statement original ts_col, partitionCols and seq_col_stub(optional) must be present
However by nature of select("*") they will be present in the data frame if they exist
Expected Behavior
tsdf.select("*") should succeed and return all columns, including those defined for ts_col, partitionCols, and seqCol
The text was updated successfully, but these errors were encountered:
R7L208
changed the title
tsdf.select("*") throws Exception stating columns included in the projection must be presenttsdf.select("*") throws Exception stating columns must be present when they are by nature of the projection
Aug 26, 2022
This is a tricky one that'll take some thought as to how to deal with...
We want to support all the types of expressions that you could use within a select, but understanding which ones will modify the structure of a TSDF such that we should issue an exception and which won't is non-trivial.
Current behavior produces the below Exception:
Exception: In TSDF's select statement original ts_col, partitionCols and seq_col_stub(optional) must be present
However by nature of
select("*")
they will be present in the data frame if they existExpected Behavior
tsdf.select("*")
should succeed and return all columns, including those defined for ts_col, partitionCols, and seqColThe text was updated successfully, but these errors were encountered: