Skip to content

Commit

Permalink
[GIE Compiler] remove log info
Browse files Browse the repository at this point in the history
  • Loading branch information
shirly121 committed Oct 19, 2023
1 parent 0139560 commit 94c7ea5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public CypherRecordParser(RelDataType outputType) {

@Override
public List<AnyValue> parseFrom(IrResult.Record record) {
logger.info("record {}", record);
logger.debug("record {}", record);
Preconditions.checkArgument(
record.getColumnsCount() == outputType.getFieldCount(),
"column size of results "
Expand Down Expand Up @@ -120,7 +120,6 @@ protected AnyValue parseElement(IrResult.Element element, @Nullable RelDataType
}

protected AnyValue parseCollection(IrResult.Collection collection, RelDataType componentType) {
logger.info("collection {}", collection);
switch (componentType.getSqlTypeName()) {
case BOOLEAN:
Boolean[] boolObjs =
Expand Down

0 comments on commit 94c7ea5

Please sign in to comment.