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

# · text · 10 lines · 7 code · 3 blank · 0 comment · 0 complexity · f0a947f82b88ea562f7c0035e73e8a64 MD5 · raw file

  1. CREATE TABLE dest1(lint_size INT, lintstring_size INT, mstringstring_size INT) STORED AS TEXTFILE;
  2. EXPLAIN
  3. FROM src_thrift
  4. INSERT OVERWRITE TABLE dest1 SELECT size(src_thrift.lint), size(src_thrift.lintstring), size(src_thrift.mstringstring) where src_thrift.lint IS NOT NULL AND NOT (src_thrift.mstringstring IS NULL);
  5. FROM src_thrift
  6. INSERT OVERWRITE TABLE dest1 SELECT size(src_thrift.lint), size(src_thrift.lintstring), size(src_thrift.mstringstring) where src_thrift.lint IS NOT NULL AND NOT (src_thrift.mstringstring IS NULL);
  7. SELECT dest1.* FROM dest1;