Skip to content

adrian-wang/project-panthera-skin

Repository files navigation

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.

About

An Analytical SQL Engine (ASE) for Hadoop

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages