PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/release-0.0.0-rc0/hive/external/ql/src/test/queries/clientnegative/udf_test_error_reduce.q

#
text | 11 lines | 7 code | 4 blank | 0 comment | 0 complexity | 07f08bc0f19080e31a9ca594e1fc6785 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. CREATE TEMPORARY FUNCTION test_error AS 'org.apache.hadoop.hive.ql.udf.UDFTestErrorOnFalse';
  2. SELECT test_error(key < 125 OR key > 130)
  3. FROM (
  4. SELECT *
  5. FROM src
  6. DISTRIBUTE BY rand()
  7. ) map_output;