Skip to content

Latest commit

 

History

History
56 lines (49 loc) · 1.5 KB

README.md

File metadata and controls

56 lines (49 loc) · 1.5 KB

project-panthera-skin

An Analytical SQL Engine (ASE) for Hadoop


OVERVIEW

This project is an independent version of "Project Panthera".


Getting Started


Feature List

    1. Support all Hive query syntax which is compatible SQL92.
    1. Base on 1, Panthera ASE support:
Feature Comment Example
Multi-Table in FROM clause select * from x,y where x.a=y.b
Subquery in WHERE clause Not support non-equal joint condition select a from x where a = (select max(c) from y)
Subquery in HAVING clause Not support non-equal joint condition select max(a) from x group by b having max(a) = (select max(c) from y)
Order by column position select a,b from x order by 1
Top level UNION ALL select a from x union all select a from y
  • You can also click here to see what ASE supports in detail.