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
PR #1006 implements indexed field access for SQL, but currently the Python API col("a") doesn't have an option to access indexed fields (and complex structs).
When adding support for indexed fields, you can use col('a')['b'] to access the indexed fields in the Python API similar to SQL.
The text was updated successfully, but these errors were encountered:
PR #1006 implements indexed field access for SQL, but currently the Python API
col("a")
doesn't have an option to access indexed fields (and complex structs).When adding support for indexed fields, you can use
col('a')['b']
to access the indexed fields in the Python API similar to SQL.The text was updated successfully, but these errors were encountered: