PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
text | 12 lines | 10 code | 2 blank | 0 comment | 0 complexity | b30d9fd19d29cc84815bdb13b76920f5 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. DESCRIBE src_thrift;
  2. EXPLAIN
  3. SELECT s1.aint, s2.lintstring
  4. FROM src_thrift s1
  5. JOIN src_thrift s2
  6. ON s1.aint = s2.aint;
  7. SELECT s1.aint, s2.lintstring
  8. FROM src_thrift s1
  9. JOIN src_thrift s2
  10. ON s1.aint = s2.aint;