Skip to content

Commit

Permalink
Address PR comment
Browse files Browse the repository at this point in the history
Signed-off-by: Chen Dai <[email protected]>
  • Loading branch information
dai-chen committed Mar 6, 2024
1 parent c22c7d1 commit ce21393
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,16 @@ case class BloomFilterMightContain(bloomFilterExpression: Expression, valueExpre
}

/**
* Generate expression code for Spark codegen execution. Sample result code (assume right value
* expression is not null):
* Generate expression code for Spark codegen execution. Sample result code:
* ```
* boolean filter_isNull_0 = true;
* boolean filter_value_0 = false;
* if (!(false)) {
* if (!right_isNull) {
* filter_isNull_0 = false;
* filter_value_0 =
* org.opensearch.flint.core.field.bloomfilter.classic.ClassicBloomFilter.readFrom(
* new java.io.ByteArrayInputStream(inputadapter_value_1)
* ).mightContain(5193736701160936137L);
* new java.io.ByteArrayInputStream(left_value)
* ).mightContain(right_value);
* }
* ```
*/
Expand Down

0 comments on commit ce21393

Please sign in to comment.