-
Notifications
You must be signed in to change notification settings - Fork 323
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
Add a new function Replace
to Table.enso
#8578
Comments
Should also have a conversion from a Map to a Table added in. |
Greg Travis reports a new STANDUP for today (2024-01-29): Progress: Disabled collation tests; struggle with CI; try to run gui It should be finished by 2024-02-01. Next Day: Table.replace |
Is
Does this imply that we might compare multiple columns from the main table with a single column in the lookup table? Or is it a straightforward multi-column aggregate key comparison? |
Greg Travis reports a new STANDUP for today (2024-01-30): Progress: Wrestle with CI, collect logs for local gui failure; start on Table.replace It should be finished by 2024-02-01. Next Day: Table.replace |
Greg Travis reports a new STANDUP for today (2024-01-31): Progress: Table.replace (in-mem) and tests It should be finished by 2024-02-01. Next Day: Table.replace (db) |
Greg Travis reports a new STANDUP for today (2024-02-01): Progress: Finished Table.replace (in-mem) and tests, sent PR It should be finished by 2024-02-01. Next Day: Table.replace (db) |
Greg Travis reports a new 🔴 DELAY for today (2024-02-02): Summary: There is 4 days delay in implementation of the Add a new function Delay Cause: Map conversion is tricky in db |
Greg Travis reports a new STANDUP for today (2024-02-02): Progress: Implemented Table.replace for database except for Map conversion It should be finished by 2024-02-05. Next Day: map conversion |
Greg Travis reports a new 🔴 DELAY for today (2024-02-05): Summary: There is 1 days delay in implementation of the Add a new function Delay Cause: Map conversion is tricky in db |
Greg Travis reports a new STANDUP for today (2024-02-05): Progress: Implemented Map conversion in database Table.replace It should be finished by 2024-02-06. Next Day: tests |
Greg Travis reports a new 🔴 DELAY for today (2024-02-06): Summary: There is 1 days delay in implementation of the Add a new function Delay Cause: Map conversion is tricky in db |
Greg Travis reports a new STANDUP for today (2024-02-06): Progress: Tests for Map conversion in database Table.replace; weird parsing errors It should be finished by 2024-02-07. Next Day: from-conversions |
As a user, I want a way to match a table against a lookup_table on a key value and then to specify which column will be replaced in the original table. This is differentiated from
merge
because it applies specifically to one column, rather than to all columns with matching names where thekey_value
matches.A scaffold of the API is below:
The text was updated successfully, but these errors were encountered: