Skip to content

Commit

Permalink
Fix typo and remove stray semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Dec 5, 2023
1 parent 1c0e6b6 commit ba54b2c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class MqlFunctions {


private MqlFunctions() {
// empty on purposeD
// empty on purpose
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ protected BinarySerializer<PolyDouble> createSerializer( int version, Compatibil
@Override
public void encode( BinaryOutput out, PolyDouble item ) {
out.writeUTF8Nullable( item.value == null ? null : item.value.toString() );
;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@
import org.polypheny.db.tools.RuleSets;
import org.polypheny.db.type.PolyType;

;


/**
* Tests for {@link AlgToSqlConverter}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,6 @@ public static SqlLiteral symbol( Enum<?> o, ParserPos parserPos ) {


public static AlgDataType getNamedType( Identifier node, Snapshot snapshot ) {
;
LogicalTable table = snapshot.rel().getTable( node.getNames().get( 0 ), node.getNames().get( 1 ) ).orElse( null );
if ( table != null ) {
return table.getRowType();
Expand Down

0 comments on commit ba54b2c

Please sign in to comment.