Skip to content

Commit

Permalink
Remove unused method that accessed removed OperatorName
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-weber committed May 22, 2024
1 parent 9c46315 commit e0b1677
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions core/src/main/java/org/polypheny/db/rex/RexBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -1506,14 +1506,6 @@ public RexCall makeHasLabel( String label ) {
}


public RexCall makeLabelFilter( String label ) {
return new RexCall(
typeFactory.createPolyType( PolyType.BOOLEAN ),
OperatorRegistry.get( QueryLanguage.from( "cypher" ), OperatorName.CYPHER_GRAPH_ONLY_LABEL ),
List.of( makeInputRef( typeFactory.createPolyType( PolyType.GRAPH ), 0 ), makeLiteral( label ) ) );
}


public RexCall makeToJson( RexNode node ) {
return new RexCall(
typeFactory.createPolyType( PolyType.VARCHAR, 2024 ),
Expand Down

0 comments on commit e0b1677

Please sign in to comment.