Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Hive is available via Git at https://github.com/apache/hive. You can download it by running the following command.

Code Block
languagebash
  $ git clone git@github.com:apache/hive.git 

In case you want to get a specific release branch, like 4.0.0, you can run that command: 

Code Block
languagebash
  $ git clone -b branch-4.0 --single-branch git@github.com:apache/hive.git


To build Hive, execute the following command on the base directory:

Code Block
  $ ant package
 mvn clean install -Pdist,itests,iceberg -DskipTests 

It will create the subdirectory build/dist with the following contents:

...