-
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
Update Table API with new filter
design
#3750
Update Table API with new filter
design
#3750
Conversation
f3c7c24
to
8d1cd87
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally looks good - couple of minor things
And as discussed need to add the on_problem
support (sorry for missing in design).
distribution/lib/Standard/Table/0.0.0-dev/src/Data/Filter_Condition.enso
Show resolved
Hide resolved
31c126f
to
646e473
Compare
1f610e4
to
485719a
Compare
@@ -854,7 +886,7 @@ type Table | |||
table = Examples.inventory_table | |||
double_inventory = table.at "total_stock" * 2 | |||
table.set "total_stock" double_inventory | |||
set : Text -> Column.Column | Vector.Vector -> Table | |||
set : Text -> Column | Vector.Vector -> Table |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is wrong: Column
is the module, Column.Column
is the type.
But as am cleaning up a lot of this in next PR not worth blocking this merge over.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I think I was also trying to change the imports but then reverted that and this may be a leftover.
Pull Request Description
Implements https://www.pivotaltracker.com/story/show/183389855
Important Notes
Implements basic filter operations both In-Memory and for the Database backend, ensuring that existing tests can be adapted and keep working. Not all
Filter_Condition
s are implemented yet.Also implements significant part of https://www.pivotaltracker.com/story/show/183390314
Checklist
Please include the following checklist in your PR:
Scala,
Java,
and
Rust
style guides.
./run ide build
and./run ide watch
.