Skip to content

Commit

Permalink
MAT-7999: Supressing error message because it's duplicated and custom…
Browse files Browse the repository at this point in the history
…ized in client
  • Loading branch information
gregory-akins committed Dec 31, 2024
1 parent d5e35d5 commit e6fb0c9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ private List<CqlCompilerException> filterOutCustomErrors(
cqlCompilerException ->
!StringUtils.containsIgnoreCase(
cqlCompilerException.getMessage(), "no viable alternative at input 'define"))
.filter(
cqlCompilerException ->
!StringUtils.containsIgnoreCase(
cqlCompilerException.getMessage(),
"mismatched input 'display' expecting 'from'"))
.toList();
}
}

0 comments on commit e6fb0c9

Please sign in to comment.