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
Closes#78.
### Summary of Changes
For the sake of consistency it is now possible to pass the type of a
`Column` in the constructor. This also improves performance, for example
when we call `get_column` on a `Table`. In that case we already know the
type of the column anyway, so there's no reason to infer it again.
---------
Co-authored-by: lars-reimann <[email protected]>
Is your feature request related to a problem?
For
Table
s we can optionally pass a schema. ForColumn
s the type is always inferred. This is not consistent.Desired solution
Add an optional parameter to the
Column
constructor for the type of theColumn
. If it's passed, we accept it. Otherwise, we infer the type as before.Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: