From 02aa499dfb71bc9571bebb79e6383842e4f48143 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Mon, 29 Feb 2016 09:44:29 -0800 Subject: [SPARK-13509][SPARK-13507][SQL] Support for writing CSV with a single function call https://issues.apache.org/jira/browse/SPARK-13507 https://issues.apache.org/jira/browse/SPARK-13509 ## What changes were proposed in this pull request? This PR adds the support to write CSV data directly by a single call to the given path. Several unitests were added for each functionality. ## How was this patch tested? This was tested with unittests and with `dev/run_tests` for coding style Author: hyukjinkwon Author: Hyukjin Kwon Closes #11389 from HyukjinKwon/SPARK-13507-13509. --- python/test_support/sql/ages.csv | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 python/test_support/sql/ages.csv (limited to 'python/test_support') diff --git a/python/test_support/sql/ages.csv b/python/test_support/sql/ages.csv new file mode 100644 index 0000000000..18991feda7 --- /dev/null +++ b/python/test_support/sql/ages.csv @@ -0,0 +1,4 @@ +Joe,20 +Tom,30 +Hyukjin,25 + -- cgit v1.2.3