From 0fbed3f2c583eab902b8fc6c32d2a4918a308b67 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 30 May 2016 09:11:40 +0200 Subject: [PATCH] Remove obsolete parquet files --- python/CMakeLists.txt | 1 - python/src/pyarrow/parquet.cc | 30 ------------------------------ python/src/pyarrow/parquet.h | 30 ------------------------------ 3 files changed, 61 deletions(-) delete mode 100644 python/src/pyarrow/parquet.cc delete mode 100644 python/src/pyarrow/parquet.h diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 30c37054aaa2d..7e013c07b311a 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -416,7 +416,6 @@ set(PYARROW_SRCS src/pyarrow/common.cc src/pyarrow/config.cc src/pyarrow/helpers.cc - src/pyarrow/parquet.cc src/pyarrow/status.cc src/pyarrow/adapters/builtin.cc diff --git a/python/src/pyarrow/parquet.cc b/python/src/pyarrow/parquet.cc deleted file mode 100644 index 2e524983d6fbf..0000000000000 --- a/python/src/pyarrow/parquet.cc +++ /dev/null @@ -1,30 +0,0 @@ -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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. - -#include "pyarrow/parquet.h" - -#include -#include -#include - -using namespace arrow; - -namespace pyarrow { - - -} // namespace pyarrow - diff --git a/python/src/pyarrow/parquet.h b/python/src/pyarrow/parquet.h deleted file mode 100644 index 8d1d79a4980f8..0000000000000 --- a/python/src/pyarrow/parquet.h +++ /dev/null @@ -1,30 +0,0 @@ -// Licensed to the Apache Software Foundation (ASF) under one -// or more contributor license agreements. See the NOTICE file -// distributed with this work for additional information -// regarding copyright ownership. The ASF licenses this file -// to you 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. - -#ifndef PYARROW_PARQUET_H -#define PYARROW_PARQUET_H - -#include -#include - -namespace pyarrow { - - -} // namespace pyarrow - -#endif // PYARROW_PARQUET_H -