Skip to content

Commit

Permalink
Merge pull request #125 from partiql/main-fix-joins
Browse files Browse the repository at this point in the history
Fixes join test cases
  • Loading branch information
johnedquinn authored Aug 27, 2024
2 parents 6665b2e + b24403f commit 058bdde
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions partiql-tests-data/eval/query/join/joins.ion
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ join::[
{
name:"ee",
n:42,
_3:null
_2:null
}
]
}
Expand Down Expand Up @@ -657,7 +657,9 @@ join::[
name:"ee",
s2_n:42,
s2_2:2,
_4:null
name:null,
s3_n:null,
s3_2:null
}
]
}
Expand Down
9 changes: 6 additions & 3 deletions partiql-tests-data/eval/query/select/select.ion
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ select_join::[
result:EvaluationSuccess,
output:$bag::[
{
id:"7"
id:"7",
title: null
}
]
}
Expand All @@ -363,7 +364,8 @@ select_join::[
result:EvaluationSuccess,
output:$bag::[
{
id:"5"
id:"5",
title: null
},
{
id:"6",
Expand All @@ -374,7 +376,8 @@ select_join::[
title:"F"
},
{
id:"7"
id:"7",
title: null
}
]
}
Expand Down

0 comments on commit 058bdde

Please sign in to comment.