Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix unit test failed due to string value in ExpressionDescription
  • Loading branch information
TJX2014 committed May 22, 2020
commit 407dcfc0cb15b0d36ec197ab67ba1272b42259ca
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ abstract class NumberToTimestampBase extends UnaryExpression
examples = """
Examples:
> SELECT _FUNC_(1230219000);
"2008-12-25 07:30:00"
2008-12-25 07:30:00
""",
group = "datetime_funcs",
since = "3.1.0")
Expand All @@ -443,7 +443,7 @@ case class SecondsToTimestamp(child: Expression)
examples = """
Examples:
> SELECT _FUNC_(1230219000123);
"2008-12-25 07:30:00.123"
2008-12-25 07:30:00.123
""",
group = "datetime_funcs",
since = "3.1.0")
Expand All @@ -461,7 +461,7 @@ case class MilliSecondsToTimestamp(child: Expression)
examples = """
Examples:
> SELECT _FUNC_(1230219000123123);
"2008-12-25 07:30:00.123123"
2008-12-25 07:30:00.123123
""",
group = "datetime_funcs",
since = "3.1.0")
Expand Down