Skip to content

Commit

Permalink
removed DateTimeFunction used within class.
Browse files Browse the repository at this point in the history
Signed-off-by: MitchellGale-BitQuill <mitchellg@bitquilltech.com>
  • Loading branch information
MitchellGale committed Dec 19, 2022
1 parent ac0f9a1 commit 1462f53
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ private FunctionResolver unix_timestamp() {
private DefaultFunctionResolver utc_date() {
return define(BuiltinFunctionName.UTC_DATE.getName(),
implWithProperties(functionProperties
-> DateTimeFunction.exprUtcDate(functionProperties), DATE));
-> exprUtcDate(functionProperties), DATE));
}

/**
Expand All @@ -585,7 +585,7 @@ private DefaultFunctionResolver utc_date() {
private DefaultFunctionResolver utc_time() {
return define(BuiltinFunctionName.UTC_TIME.getName(),
implWithProperties(functionProperties
-> DateTimeFunction.exprUtcTime(functionProperties), TIME));
-> exprUtcTime(functionProperties), TIME));
}

/**
Expand All @@ -594,7 +594,7 @@ private DefaultFunctionResolver utc_time() {
private DefaultFunctionResolver utc_timestamp() {
return define(BuiltinFunctionName.UTC_TIMESTAMP.getName(),
implWithProperties(functionProperties
-> DateTimeFunction.exprUtcTimeStamp(functionProperties), DATETIME));
-> exprUtcTimeStamp(functionProperties), DATETIME));
}

/**
Expand Down

0 comments on commit 1462f53

Please sign in to comment.