Skip to content

Commit b53cf82

Browse files
committed
Fix unstable sorting on compliance test
1 parent 0f6f53d commit b53cf82

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

examples/compliance/cmpl_bql_example_2.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,39 +175,39 @@
175175
?owner_node ID ?owner \"drives\"@[] ?car ID ?manufacturer
176176
}
177177
GROUP BY ?manufacturer
178-
ORDER BY ?owners DESC;",
178+
ORDER BY ?owners DESC, ?manufacturer DESC;",
179179
"WillFail": false,
180180
"MustReturn": [
181181
{
182182
"?manufacturer": "subaru",
183183
"?owners": "\"2\"^^type:int64"
184184
},
185185
{
186-
"?manufacturer": "honda",
186+
"?manufacturer": "volvo",
187187
"?owners": "\"1\"^^type:int64"
188188
},
189189
{
190-
"?manufacturer": "lexus",
191-
"?owners": "\"1\"^^type:int64"
190+
"?manufacturer": "toyota",
191+
"?owners": "\"1\"^^type:int64"
192192
},
193193
{
194-
"?manufacturer": "mazda",
194+
"?manufacturer": "tesla",
195195
"?owners": "\"1\"^^type:int64"
196196
},
197197
{
198198
"?manufacturer": "mini",
199199
"?owners": "\"1\"^^type:int64"
200200
},
201201
{
202-
"?manufacturer": "tesla",
202+
"?manufacturer": "mazda",
203203
"?owners": "\"1\"^^type:int64"
204204
},
205205
{
206-
"?manufacturer": "toyota",
207-
"?owners": "\"1\"^^type:int64"
206+
"?manufacturer": "lexus",
207+
"?owners": "\"1\"^^type:int64"
208208
},
209209
{
210-
"?manufacturer": "volvo",
210+
"?manufacturer": "honda",
211211
"?owners": "\"1\"^^type:int64"
212212
},
213213
{

0 commit comments

Comments
 (0)