소스 검색

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

Johan Ahlen 8 년 전
부모
커밋
8c34fb1
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.'
       }
     }
   };