Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuyukitanimura committed Jun 11, 2024
1 parent f028425 commit 024a422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ trait CometExprShim {
}

protected def isTimestampNTZType(dt: DataType): Boolean =
dt.typeName == "timestamp_ntz" => true // `TimestampNTZType` is private
dt.typeName == "timestamp_ntz" // `TimestampNTZType` is private

protected def evalMode(c: Cast): CometEvalMode.Value = CometEvalMode.fromBoolean(c.ansiEnabled)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ trait CometExprShim {
}

protected def isTimestampNTZType(dt: DataType): Boolean =
dt.typeName == "timestamp_ntz" => true // `TimestampNTZType` is private
dt.typeName == "timestamp_ntz" // `TimestampNTZType` is private

protected def evalMode(c: Cast): CometEvalMode.Value = CometEvalMode.fromBoolean(c.ansiEnabled)
}

0 comments on commit 024a422

Please sign in to comment.