-
Notifications
You must be signed in to change notification settings - Fork 2
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 conditional that compare value to lookup table #367
Comments
Additional this should be able to check a simple textfile with one column. |
Does this warrant a dedicated predicate? It should be possible to achieve the desired outcome with existing tools (untested): put_filemap("path", "newMap", key_column: "0", value_column: "0")
copy_field("001", "@in_map")
lookup("@in_map", "newMap", delete: "true")
unless exists("@in_map")
reject()
end |
I think it would be ok. |
Just specify |
This seems to work. Therefore closing. |
We have a list of records that we want to keep and a dump. We only want to keep the records that are also listed in a certain column. A conditional would be great that tests the values against a filemap.
The text was updated successfully, but these errors were encountered: