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 782c5a5 ARROW-2773: [Python] corrected partition_cols parameter name
782c5a5 is described below
commit 782c5a5d70445b2505cf4af62f1058a0a967e696
Author: Daniel Chalef <[email protected]>
AuthorDate: Tue Jul 3 11:00:21 2018 -0400
ARROW-2773: [Python] corrected partition_cols parameter name
`partition_columns` -> `partition_cols`
Author: Daniel Chalef <[email protected]>
Closes #2199 from danielchalef/master and squashes the following commits:
c64deb51 <Daniel Chalef> corrected partition_cols parameter name
---
python/doc/source/parquet.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/doc/source/parquet.rst b/python/doc/source/parquet.rst
index df3cc62..dbc009e 100644
--- a/python/doc/source/parquet.rst
+++ b/python/doc/source/parquet.rst
@@ -234,7 +234,7 @@ default behaviour when no filesystem is added is to use the
local filesystem.
.. code-block:: python
# Local dataset write
- pq.write_to_dataset(table, root_path='dataset_name',
partition_columns=['one', 'two'])
+ pq.write_to_dataset(table, root_path='dataset_name', partition_cols=['one',
'two'])
The root path in this case specifies the parent directory to which data will
be saved. The partition columns are the
column names by which to partition the dataset. Columns are partitioned in the
order they are given. The partition