Skip to content

Commit

Permalink
Removed the last dependency on presto library. (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoymajumdar committed May 11, 2017
1 parent 414fe76 commit 5cb31a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ guava_version=19.0
guice_version=4.0
jackson_version=2.5.5
jersey_version=2.19
presto_version=0.118
slf4j_version=1.7.12
swagger_version=1.3.12
hive_version=1.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private String toTypeString(final Type type) {
}

/**
* Converts from type string to presto type.
* Converts from type string to Metacat type.
* @param type type
* @return Type
*/
Expand Down Expand Up @@ -380,7 +380,7 @@ public Location toLocation(final TableInfo tableInfo) {
/**
* Creates s3 partition.
* @param table table
* @param partitionInfo presto partition info
* @param partitionInfo partition info
* @return partition
*/
public Partition toPartition(final Table table, final PartitionInfo partitionInfo) {
Expand Down
5 changes: 4 additions & 1 deletion metacat-functional-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ dependencies {

testCompile project(':metacat-common-server')
testCompile 'javax.ws.rs:jsr311-api:1.1.1'
testCompile "com.facebook.presto:presto-hive-hadoop2:${presto_version}"
testCompile ("org.apache.hive:hive-exec:${hive_version}") {
exclude module: 'pentaho-aggdesigner-algorithm'
}
testCompile "org.apache.hadoop:hadoop-core:${hadoopcore_version}"
}

task expandWar(type: Copy) {
Expand Down

0 comments on commit 5cb31a4

Please sign in to comment.