Skip to content

Commit

Permalink
resolve selectors in CUE to SQL conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
dermetfan committed Aug 10, 2022
1 parent a5e1284 commit a29d205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/infrastructure/persistence/fact.go
Expand Up @@ -210,7 +210,7 @@ Kind:
case cue.BytesKind, cue.IntKind, cue.FloatKind, cue.NumberKind, cue.BoolKind, cue.NullKind:
appendComparision("=", value)
case cue.BottomKind, cue.TopKind:
switch op, vals := value.Expr(); op {
switch op, vals := value.Eval().Expr(); op {
case cue.OrOp:
clause = `(`
for i, val := range vals {
Expand Down

0 comments on commit a29d205

Please sign in to comment.