Kim Jin Chul has uploaded a new patch set (#2). Change subject: IMPALA-5529: Add additional function signatures for TRUNC() ......................................................................
IMPALA-5529: Add additional function signatures for TRUNC() The following signatures to be added: +--------------+----------------------------------+-------------+---------------+ | return type | signature | binary type | is persistent | +--------------+----------------------------------+-------------+---------------+ | DECIMAL(*,*) | trunc(DECIMAL(*,*)) | BUILTIN | true | | DECIMAL(*,*) | trunc(DECIMAL(*,*), BIGINT) | BUILTIN | true | | DECIMAL(*,*) | trunc(DECIMAL(*,*), INT) | BUILTIN | true | | DECIMAL(*,*) | trunc(DECIMAL(*,*), SMALLINT) | BUILTIN | true | | DECIMAL(*,*) | trunc(DECIMAL(*,*), TINYINT) | BUILTIN | true | | BIGINT | trunc(DOUBLE) | BUILTIN | true | +--------------+----------------------------------+-------------+---------------+ Tests: * Adds tests for the new builtin trunc() 1) Runs properly on expected signature 2) Throws an exception on unexpected signature Change-Id: I856da9f817b948de3c72af60a0742b128398b4cf --- M common/function-registry/impala_functions.py M fe/src/main/java/org/apache/impala/analysis/FunctionCallExpr.java M fe/src/test/java/org/apache/impala/analysis/AnalyzeExprsTest.java 3 files changed, 11 insertions(+), 6 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/50/7450/2 -- To view, visit http://gerrit.cloudera.org:8080/7450 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: newpatchset Gerrit-Change-Id: I856da9f817b948de3c72af60a0742b128398b4cf Gerrit-PatchSet: 2 Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-Owner: Kim Jin Chul <[email protected]> Gerrit-Reviewer: Alex Behm <[email protected]> Gerrit-Reviewer: Greg Rahn <[email protected]> Gerrit-Reviewer: Kim Jin Chul <[email protected]> Gerrit-Reviewer: Thomas Tauber-Marshall <[email protected]>
