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
Is your feature request related to a problem? Please describe.
When accessing columns of a table, we may need to check
whether a column with the given name exists,
whether the column has a compatible type.
Describe the solution you'd like
Polars has a method collect_schema to compute the schema of a DataFrame or LazyFrame. We may, hence, generate code to fetch the schema of a Table from the runner in the background. Once the information is available, we can run further checks without running code.
The schema checks themselves can be described as constraints in the stub language.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When accessing columns of a table, we may need to check
Describe the solution you'd like
Polars has a method
collect_schema
to compute the schema of aDataFrame
orLazyFrame
. We may, hence, generate code to fetch the schema of aTable
from the runner in the background. Once the information is available, we can run further checks without running code.The schema checks themselves can be described as constraints in the stub language.
The text was updated successfully, but these errors were encountered: