PageRenderTime 35ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.0.0-rc0/hive/external/ql/src/test/queries/clientpositive/input9.q

#
text | 11 lines | 7 code | 4 blank | 0 comment | 0 complexity | 398f63a48e4f8c7fbed2e66d08fad64c MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. CREATE TABLE dest1(value STRING, key INT) STORED AS TEXTFILE;
  2. EXPLAIN
  3. FROM src1
  4. INSERT OVERWRITE TABLE dest1 SELECT NULL, src1.key where NULL = NULL;
  5. FROM src1
  6. INSERT OVERWRITE TABLE dest1 SELECT NULL, src1.key where NULL = NULL;
  7. SELECT dest1.* FROM dest1;