Skip to content

Commit

Permalink
Upgrade to Parquet 1.4.3
Browse files Browse the repository at this point in the history
Note that Parqeut 1.4.3 handles default values differently
than in the past. If a record field is *not* part of the specified
projection, it will be set to the default value (if it exists)
instead of null.
  • Loading branch information
massie committed May 13, 2014
1 parent 81eb8c3 commit 6b929e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class FieldEnumerationSuite extends SparkFunSuite with BeforeAndAfter {

val first1 = reads1.first()
assert(first1.getReadName === "simread:1:26472783:false")
assert(first1.getReadMapped === null)
assert(first1.getReadMapped === false)

val p2 = Projection(ADAMRecordField.readName, ADAMRecordField.readMapped)

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<scala.artifact.suffix>2.10</scala.artifact.suffix>
<avro.version>1.7.4</avro.version>
<spark.version>0.9.1</spark.version>
<parquet.version>1.3.2</parquet.version>
<parquet.version>1.4.3</parquet.version>
<!-- Edit the following line to configure the Hadoop (HDFS) version. -->
<hadoop.version>2.2.0</hadoop.version>
</properties>
Expand Down

0 comments on commit 6b929e4

Please sign in to comment.