浏览代码

HUE-6495 [autocomplete] Update the Impala built-in type conversion UDFs

Johan Ahlen 8 年之前
父节点
当前提交
8c34fb1984
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      desktop/core/src/desktop/static/desktop/js/sqlFunctions.js

+ 8 - 1
desktop/core/src/desktop/static/desktop/js/sqlFunctions.js

@@ -1282,10 +1282,17 @@ var SqlFunctions = (function () {
     impala: {
       cast: {
         returnTypes: ['T'],
-        arguments: [[{type: 'T'}]],
+        arguments: [[{ type: 'T' }]],
         signature: 'cast(a as T)',
 				draggable: 'cast()',
         description: 'Converts the results of the expression expr to type T. For example, cast(\'1\' as BIGINT) will convert the string \'1\' to its integral representation. A null is returned if the conversion does not succeed. If cast(expr as boolean) Hive returns true for a non-empty string.'
+      },
+      typeof: {
+        returnTypes: ['STRING'],
+        arguments: [[{ type: 'T' }]],
+        signature: 'typeof(T a)',
+        draggable: 'typeof()',
+        description: 'Returns the name of the data type corresponding to an expression. For types with extra attributes, such as length for CHAR and VARCHAR, or precision and scale for DECIMAL, includes the full specification of the type.'
       }
     }
   };