commit b7f7778e2aa946f99384f2bf3aebd259ca74c2f2 Author: Owen O'Malley Date: Thu Mar 27 09:36:45 2014 -0700 HIVE-6757. Remove deprecated Parquet classes. diff --git ql/src/java/parquet/hive/DeprecatedParquetInputFormat.java ql/src/java/parquet/hive/DeprecatedParquetInputFormat.java deleted file mode 100644 index ec0ebc0..0000000 --- ql/src/java/parquet/hive/DeprecatedParquetInputFormat.java +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package parquet.hive; - -import org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat; -import org.apache.hadoop.io.ArrayWritable; - -import parquet.hadoop.ParquetInputFormat; - -/** - * Deprecated name of the parquet-hive input format. This class exists - * simply to provide backwards compatibility with users who specified - * this name in the Hive metastore. All users should now use - * STORED AS PARQUET - */ -@Deprecated -public class DeprecatedParquetInputFormat extends MapredParquetInputFormat { - - public DeprecatedParquetInputFormat() { - super(); - } - - public DeprecatedParquetInputFormat(final ParquetInputFormat realInputFormat) { - super(realInputFormat); - } -} diff --git ql/src/java/parquet/hive/DeprecatedParquetOutputFormat.java ql/src/java/parquet/hive/DeprecatedParquetOutputFormat.java deleted file mode 100644 index a0bdd75..0000000 --- ql/src/java/parquet/hive/DeprecatedParquetOutputFormat.java +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package parquet.hive; - -import org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat; -import org.apache.hadoop.io.ArrayWritable; -import org.apache.hadoop.mapreduce.OutputFormat; - -/** - * Deprecated name of the parquet-hive output format. This class exists - * simply to provide backwards compatibility with users who specified - * this name in the Hive metastore. All users should now use - * STORED AS PARQUET - */ -@Deprecated -public class DeprecatedParquetOutputFormat extends MapredParquetOutputFormat { - - public DeprecatedParquetOutputFormat() { - super(); - } - - public DeprecatedParquetOutputFormat(final OutputFormat mapreduceOutputFormat) { - super(mapreduceOutputFormat); - } -} diff --git ql/src/java/parquet/hive/MapredParquetInputFormat.java ql/src/java/parquet/hive/MapredParquetInputFormat.java deleted file mode 100644 index 9b3d453..0000000 --- ql/src/java/parquet/hive/MapredParquetInputFormat.java +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package parquet.hive; - -import org.apache.hadoop.io.ArrayWritable; - -import parquet.hadoop.ParquetInputFormat; - -/** - * Deprecated name of the parquet-hive input format. This class exists - * simply to provide backwards compatibility with users who specified - * this name in the Hive metastore. All users should now use - * STORED AS PARQUET - */ -@Deprecated -public class MapredParquetInputFormat extends org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat { - - public MapredParquetInputFormat() { - super(); - } - - public MapredParquetInputFormat(final ParquetInputFormat realInputFormat) { - super(realInputFormat); - } -} diff --git ql/src/java/parquet/hive/MapredParquetOutputFormat.java ql/src/java/parquet/hive/MapredParquetOutputFormat.java deleted file mode 100644 index dc6ea3e..0000000 --- ql/src/java/parquet/hive/MapredParquetOutputFormat.java +++ /dev/null @@ -1,35 +0,0 @@ -/** - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package parquet.hive; - -import org.apache.hadoop.io.ArrayWritable; -import org.apache.hadoop.mapreduce.OutputFormat; - -/** - * Deprecated name of the parquet-hive output format. This class exists - * simply to provide backwards compatibility with users who specified - * this name in the Hive metastore. All users should now use - * STORED AS PARQUET - */ -@Deprecated -public class MapredParquetOutputFormat extends org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat { - - public MapredParquetOutputFormat () { - super(); - } - - public MapredParquetOutputFormat(final OutputFormat mapreduceOutputFormat) { - super(mapreduceOutputFormat); - } -} diff --git ql/src/java/parquet/hive/serde/ParquetHiveSerDe.java ql/src/java/parquet/hive/serde/ParquetHiveSerDe.java deleted file mode 100644 index a1dcaa4..0000000 --- ql/src/java/parquet/hive/serde/ParquetHiveSerDe.java +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package parquet.hive.serde; - -/** - * Deprecated name of the parquet-hive output format. This class exists - * simply to provide backwards compatibility with users who specified - * this name in the Hive metastore. All users should now use - * STORED AS PARQUET - */ -@Deprecated -public class ParquetHiveSerDe extends org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe { - -}