Skip to content

Commit

Permalink
Added missing fields to bloom translation test queries (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
51-code authored Dec 4, 2024
1 parent f7e32b0 commit fcec976
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ void testTeragrepHdfsDeleteTranslation() {

@Test
void testTeragrepBloomCreateTranslation() {
final String query = "| teragrep exec bloom create";
final String query = "| teragrep exec bloom create table myTable regex \\w{4}";
final CharStream inputStream = CharStreams.fromString(query);
final DPLLexer lexer = new DPLLexer(inputStream);
final DPLParser parser = new DPLParser(new CommonTokenStream(lexer));
Expand All @@ -353,7 +353,7 @@ void testTeragrepBloomCreateTranslation() {

@Test
void testTeragrepBloomUpdateTranslation() {
final String query = "| teragrep exec bloom update";
final String query = "| teragrep exec bloom update table myTable regex \\w{4}";
final CharStream inputStream = CharStreams.fromString(query);
final DPLLexer lexer = new DPLLexer(inputStream);
final DPLParser parser = new DPLParser(new CommonTokenStream(lexer));
Expand Down

0 comments on commit fcec976

Please sign in to comment.