Support for Hive and Graph Databases

@ShelLuser - I didn’t test this solution yet, but another came to my head based on your answer here:

Scenario of automated DDL pipeline with support for Postgres and Hive:

  1. I use DatabaseManager interface/or other exisitng in VP to generate from Java DDL for Postgres and store those in GIT repository (as some users work in development on postgres anyway with some objects)
  2. Once commit arrives in GIT I will trigger Jenkins or other CI/CD pipeline which will take those DDL and populate real Postgres database instance with dummy structures only.
  3. The I will trigger sqoop --create-hive-table to get Hive DDL syntax from Postgres live instance
    Sqoop User Guide (v1.4.2)
  4. Store DDL for Hive in GIT alongside with latest Postgres DDL

Its not big deal, if you have any other idea let me know.

Thx for discussion.

Ladislav