Skip to content

Commit

Permalink
Revert "remove hive parquet bundle"
Browse files Browse the repository at this point in the history
This reverts commit 41ebc5f.

Conflicts:
	sql/hive/src/main/scala/org/apache/spark/sql/hive/parquet/FakeParquetSerDe.scala
  • Loading branch information
marmbrus committed Aug 18, 2014
1 parent cc30430 commit 1620079
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ class ParquetMetastoreSuite extends QueryTest with BeforeAndAfterAll {
stringField STRING
)
PARTITIONED BY (p int)
ROW FORMAT SERDE 'org.apache.spark.sql.hive.parquet.FakeParquetSerDe'
ROW FORMAT SERDE 'org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe'
STORED AS
INPUTFORMAT 'org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat'
OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat'
location '${partitionedTableDir.getCanonicalPath}'
""")

Expand All @@ -73,7 +76,10 @@ class ParquetMetastoreSuite extends QueryTest with BeforeAndAfterAll {
intField INT,
stringField STRING
)
ROW FORMAT SERDE 'org.apache.spark.sql.hive.parquet.FakeParquetSerDe'
ROW FORMAT SERDE 'org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe'
STORED AS
INPUTFORMAT 'org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat'
OUTPUTFORMAT 'org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat'
location '${new File(partitionedTableDir, "p=1").getCanonicalPath}'
""")

Expand Down

0 comments on commit 1620079

Please sign in to comment.