Skip to content

Commit

Permalink
fix: issue related with contains and type casting
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 29, 2021
1 parent c961a68 commit 8e6079b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quorum/model.py
Expand Up @@ -222,7 +222,7 @@
"is_null" : lambda v, t: None,
"not_null" : lambda v, t: None,
"is_not_null" : lambda v, t: None,
"contains" : lambda v, t: [v for v in v.split(";")]
"contains" : lambda v, t: [t(v) for v in v.split(";")]
}
""" Map that associates each of the normalized operations with
an inline function that together with the data type maps the
Expand Down

0 comments on commit 8e6079b

Please sign in to comment.