|
Dose JSqlParser have plan to support Hive? |
Replies: 4 comments 2 replies
|
Greetings. While I am only a contributor and can't speak on behalf of JSQLParser, I think we would be able to support HIVE fully when sponsored by an interested party. Alternatively, Source Contributions and PR's would be welcome. |
|
@kiddyu If I remember right, there already were Hive specific requests and implementations. JSqlParser is feature driven and not DBMS driven. So should not request for a specific database system but for specific syntactic constructs. So which special SQLs do you need to parse? |
|
@wumpz: Since these questions come up quite frequently, I have checked out HIVE. Its not a SQL DB, but rather a "SQL alike" compatibility layer around Apache Hadoop. While it resembles most ideas around SQL, it is as far from the SQL standard as JavaScript is from Java. Maybe a template based |
|
@manticore-projects I am not familiar with the HIVE QL, so the standard workflow fits in, which means that every feature request is evaluated if it could / should be included. A template at least at grammar level seems to be difficult, since still in pure javacc there are no "import" statements and alternatives that have "import" are ruled out for specific reasons. |
@manticore-projects I am not familiar with the HIVE QL, so the standard workflow fits in, which means that every feature request is evaluated if it could / should be included. A template at least at grammar level seems to be difficult, since still in pure javacc there are no "import" statements and alternatives that have "import" are ruled out for specific reasons.