-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Table/Column.cast
#6112
Comments
Radosław Waśko reports a new STANDUP for yesterday (2023-05-15): Progress: Added test cases for cast, some design on how it could play with parse. Implementing common paths. Started implementing casting in-memory. It should be finished by 2023-05-18. Next Day: Next day I will be working on the same task. Add remaining in-memory casts. Testing. |
Radosław Waśko reports a new STANDUP for today (2023-05-16): Progress: Implemented rest of in-memory casting logic (for now). Fixed issues ensuring (almost) all tests will be passing. Discussion about imports and encapsulation. Did today's bookclub (still need to catchup with Friday's). Got a draft PR up. It should be finished by 2023-05-18. Next Day: Next day I will be working on the same task. Implement |
Radosław Waśko reports a new STANDUP for today (2023-05-17): Progress: Added the Lossy_Conversion warning. PR ready for review. Working on adding simple Next Day: Next day I will be working on the same task. Get the PR merged. Investigate the warnings bug - report it and find a workaround/fix. Create a PR for the |
Radosław Waśko reports a new STANDUP for yesterday (2023-05-18): Progress: Applying suggestions on the PR. Got the PR merged. Found out the losing warnings bug and reported a repro. It should be finished by 2023-05-18. Next Day: Next day I will be working on the #6410 task. Add workarounds for the bug in the |
Known in the specification as
set_value_type
.Lossy_Conversion
if casting a non-text value to text and its text representation ahs to be truncated.CAST
operator and work according to each database's logic.int->text
will be portable enough.text->int
,int<->float
.The text was updated successfully, but these errors were encountered: