arrow git commit: ARROW-1217: [GLib] Add GInputStream based arrow::io::RandomAccessFile

2017-07-15 Thread wesm
Repository: arrow Updated Branches: refs/heads/master dc4216f02 -> e438e1517 ARROW-1217: [GLib] Add GInputStream based arrow::io::RandomAccessFile `GInputStream` provides many input types such as local file, in memory data, socket including TLS support. It's useful to read data from many

[2/2] arrow git commit: ARROW-1214: [Python/C++] Add C++ functionality to more easily handle encapsulated IPC messages, Python bindings

2017-07-15 Thread wesm
ARROW-1214: [Python/C++] Add C++ functionality to more easily handle encapsulated IPC messages, Python bindings This patch does a bunch of things: * Decouples the RecordBatchStreamReader from the actual message iteration (which is handled by a new `arrow::ipc::MessageReader` interface *

[1/2] arrow git commit: ARROW-1214: [Python/C++] Add C++ functionality to more easily handle encapsulated IPC messages, Python bindings

2017-07-15 Thread wesm
Repository: arrow Updated Branches: refs/heads/master 099f61ce5 -> bb0a75885 http://git-wip-us.apache.org/repos/asf/arrow/blob/bb0a7588/python/pyarrow/ipc.pxi -- diff --git a/python/pyarrow/ipc.pxi b/python/pyarrow/ipc.pxi new

arrow git commit: ARROW-1218: [C++] Fix arrow build if no compression library is used

2017-07-15 Thread uwe
Repository: arrow Updated Branches: refs/heads/master 9ff39f3e9 -> 099f61ce5 ARROW-1218: [C++] Fix arrow build if no compression library is used Author: Philipp Moritz Closes #846 from pcmoritz/arrow-no-compression-build and squashes the following commits: 75b7ebb

arrow git commit: ARROW-1216: [Python] Fix creating numpy array from arrow buffers on python 2

2017-07-15 Thread uwe
Repository: arrow Updated Branches: refs/heads/master d46b7ea3e -> 9ff39f3e9 ARROW-1216: [Python] Fix creating numpy array from arrow buffers on python 2 Author: Philipp Moritz Closes #844 from pcmoritz/numpy-buffer and squashes the following commits: a891971 [Philipp

arrow git commit: ARROW-992: [Python] Try to set a __version__ in in-place local builds

2017-07-15 Thread uwe
Repository: arrow Updated Branches: refs/heads/master f62db836a -> d46b7ea3e ARROW-992: [Python] Try to set a __version__ in in-place local builds This is better than having no version at all Author: Wes McKinney Closes #841 from wesm/ARROW-992 and squashes the

arrow git commit: ARROW-962: [Python] Add schema attribute to RecordBatchFileReader

2017-07-15 Thread uwe
Repository: arrow Updated Branches: refs/heads/master cb31b8bc1 -> bfe395906 ARROW-962: [Python] Add schema attribute to RecordBatchFileReader Author: Wes McKinney Closes #843 from wesm/ARROW-962 and squashes the following commits: b7144aa [Wes McKinney] Add