Skip to content

Commit

Permalink
revert failing test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsanjay committed Dec 3, 2024
1 parent d3a2995 commit ae9c5bb
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2994,8 +2994,8 @@ public void testSelectEmptyField() throws Exception {
// notafield_i matches a dynamic field pattern but has no docs, so don't allow this
expectThrows(
IOException.class, () -> expectResults("SELECT id, stringx, notafield_i FROM $ALIAS", 5));
// expectThrows(IOException.class, () -> expectResults("SELECT id, stringx, notstored FROM
// $ALIAS", 5));
expectThrows(
IOException.class, () -> expectResults("SELECT id, stringx, notstored FROM $ALIAS", 5));
}

@Test
Expand Down Expand Up @@ -3059,12 +3059,12 @@ public void testMultiValuedFieldHandling() throws Exception {
1);

// can't sort by a mv field
/*expectThrows(
IOException.class,
() ->
expectResults(
"SELECT stringxmv FROM $ALIAS WHERE stringxmv IS NOT NULL ORDER BY stringxmv ASC",
0));*/
expectThrows(
IOException.class,
() ->
expectResults(
"SELECT stringxmv FROM $ALIAS WHERE stringxmv IS NOT NULL ORDER BY stringxmv ASC",
0));

// even id's have these fields, odd's are null ...
expectListInResults("0", "stringsx", stringsx, -1, 5);
Expand Down

0 comments on commit ae9c5bb

Please sign in to comment.