Skip to content

Commit

Permalink
Fixes even more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnedquinn committed Apr 17, 2024
1 parent 08b6655 commit 3dba584
Show file tree
Hide file tree
Showing 7 changed files with 1,369 additions and 1,140 deletions.
30 changes: 18 additions & 12 deletions partiql-tests-data/eval/misc.ion
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,24 @@ uncategorized::[
{
name:"selectValueStructConstructorWithMissing",
statement:"SELECT VALUE {'x': a.x, 'y': a.y} FROM `[{x:5}, {y:6}]` AS a",
assert:{
evalMode:[EvalModeCoerce, EvalModeError],
result:EvaluationSuccess,
output:$bag::[
{
x:5
},
{
y:6
}
]
}
assert: [
{
evalMode:EvalModeCoerce,
result:EvaluationSuccess,
output:$bag::[
{
x:5
},
{
y:6
}
]
},
{
evalMode:EvalModeError,
result:EvaluationFail
},
]
},
{
name:"selectIndexStruct",
Expand Down
Loading

0 comments on commit 3dba584

Please sign in to comment.