You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/01/29 02:25:01 UTC

[arrow] branch master updated: ARROW-4408: [CPP/Doc] Remove outdated Parquet documentation

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 93d1012  ARROW-4408: [CPP/Doc] Remove outdated Parquet documentation
93d1012 is described below

commit 93d1012b1f7d7ba2addab4ca13d4761d5ae2bf8e
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Mon Jan 28 20:24:53 2019 -0600

    ARROW-4408: [CPP/Doc] Remove outdated Parquet documentation
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    
    Closes #3516 from kszucs/parquet_doc and squashes the following commits:
    
    ff157804 <Krisztián Szűcs> remove outdated parquet.md
---
 cpp/doc/Parquet.md | 37 -------------------------------------
 1 file changed, 37 deletions(-)

diff --git a/cpp/doc/Parquet.md b/cpp/doc/Parquet.md
deleted file mode 100644
index 0ed1007..0000000
--- a/cpp/doc/Parquet.md
+++ /dev/null
@@ -1,37 +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.
--->
-
-## Building Arrow-Parquet integration
-
-To use Arrow C++ with Parquet, you must first build the Arrow C++ libraries and
-install them someplace. Then, you can build [parquet-cpp][1] with the Arrow
-adapter library:
-
-```bash
-# Set this to your preferred install location
-export ARROW_HOME=$HOME/local
-
-git clone https://github.com/apache/parquet-cpp.git
-cd parquet-cpp
-cmake -DCMAKE_INSTALL_PREFIX=$PARQUET_HOME
-make -j4
-make install
-```
-
-[1]: https://github.com/apache/parquet-cpp