Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
19075f9
[ARROW-5450]: [Rust] Basic JSON reader
nevi-me Feb 12, 2019
f921ef8
remove hardcoded length
nevi-me Feb 12, 2019
000d529
ARROW-4537: [CI] Suppress shell warning on travis-ci
mrkn Feb 12, 2019
b31845d
ARROW-4481: [Website] Remove generated specification docs from site a…
wesm Feb 12, 2019
35b2871
ARROW-4535: [C++] Fix MakeBuilder to preserve ListType's field name
mrkn Feb 12, 2019
41e3bff
ARROW-3653: [C++][Python] Support data copying between different GPU …
pearu Feb 12, 2019
a5d8ccc
ARROW-4181: [Python] Fixes for Numpy struct array conversion
pitrou Feb 12, 2019
61b2926
ARROW-4532: [Java] fix bug causing very large varchar value buffers
Feb 12, 2019
579fefb
ARROW-4423: [C++] Upgrade vendored gmock/gtest to 1.8.1
emkornfield Feb 12, 2019
3ceef46
ARROW-4468: [Rust] Implement BitAnd/BitOr for &Buffer (with SIMD) (#3…
paddyhoran Feb 12, 2019
af60c2e
ARROW-3292: [C++] Test Flight RPC in Travis CI
pitrou Feb 12, 2019
75b3166
ARROW-4523,ARROW-4524: [JS] Add row proxy generation benchmark, impro…
TheNeuralBit Feb 13, 2019
5ed6fb5
ARROW-4550: [JS] Fix AMD pattern
mbostock Feb 13, 2019
27ba26c
ARROW-4513: [Rust] Implement BitAnd/BitOr for &Bitmap
paddyhoran Feb 13, 2019
d831e2c
ARROW-47: [C++] Preliminary arrow::Scalar object model
wesm Feb 13, 2019
51b5143
ARROW-4539: [Java] Fix child vector count for lists. (#3625)
praveenbingo Feb 13, 2019
69d595a
ARROW-4558: [C++][Flight] Implement gRPC customizations without UB
wesm Feb 13, 2019
d3825b6
remove `panic!`s
nevi-me Feb 14, 2019
0405bf9
remove panics, coerce scalar + list to list
nevi-me Feb 14, 2019
6d8ef01
fix broken test
nevi-me Feb 14, 2019
2571b03
ARROW-4340: [C++][CI] Build IWYU for LLVM 7 in iwyu docker-compose job
fsaintjacques Feb 14, 2019
49c70cc
ARROW-4204: [Gandiva] add support for decimal subtract
Feb 14, 2019
148213e
ARROW-3162: Flight Python bindings
Feb 14, 2019
b9819e8
ARROW-4563: [Python] Validate decimal128() precision input
pitrou Feb 14, 2019
47ebb1a
ARROW-1896: [C++] Do not allocate memory inside CastKernel. Clean up …
wesm Feb 15, 2019
bf138a8
ARROW-4576: [Python] Fix error during benchmarks
pitrou Feb 15, 2019
40b0c88
ARROW-3669: [Python] Raise error on Numpy byte-swapped array
pitrou Feb 15, 2019
10e8942
ARROW-4529: [C++] Add test for BitUtil::RoundDown
fsaintjacques Feb 15, 2019
09cb71c
ARROW-4474: Use signed integers in FlightInfo payload size fields
lidavidm Feb 15, 2019
bdbf630
ARROW-4582: [Python/C++] Acquire the GIL on Py_INCREF
xhochy Feb 15, 2019
341f1b2
ARROW-4585: [C++] Add protoc dependency to flight_testing
xhochy Feb 15, 2019
524a9dc
ARROW-4577: [C++] Don't set interface link libs on arrow_shared where…
xhochy Feb 15, 2019
e1bc0d4
ARROW-4586: [Rust] Remove arrow/mod.rs as it is not needed
paddyhoran Feb 16, 2019
a374c3c
ARROW-4490: [Rust] Add explicit SIMD vectorization for boolean ops in…
paddyhoran Feb 16, 2019
bbca717
ARROW-4341: [C++] Refactor Primitive builders and BooleanBuilder to u…
bkietz Feb 16, 2019
b74cc65
ARROW-4592: [GLib] Stop configure immediately when GLib isn't available
kou Feb 16, 2019
aa765aa
ARROW-4594: [Ruby] Arrow::StructArray#[] returns Arrow::Struct instea…
kou Feb 16, 2019
0c340b4
ARROW-4593: [Ruby] Arrow::Array#[out_of_range] returns nil
kou Feb 17, 2019
bb78e8b
ARROW-4584: [Python] Add built wheel to manylinux1 dockerignore
xhochy Feb 17, 2019
cfbe0ce
ARROW-4377: [Rust] Implement std::fmt::Debug for PrimitiveArrays
Feb 17, 2019
a7e93a5
ARROW-4598: [CI] Remove needless LLVM_DIR for macOS
kou Feb 17, 2019
3f3da9d
PARQUET-1532: [C++] Fix build error with MinGW
kou Feb 17, 2019
3606aa2
ARROW-4589: [Rust] Projection push down query optimizer rule
andygrove Feb 17, 2019
5e2445b
ARROW-4601: [Python] Add license header to dockerignore
xhochy Feb 17, 2019
811c7dc
ARROW-4464: [Rust] [DataFusion] Add support for LIMIT
Feb 17, 2019
6321a01
revert deleting mod file
nevi-me Feb 18, 2019
7eb7c5d
[ARROW-5450]: [Rust] Basic JSON reader
nevi-me Feb 12, 2019
33fdc6b
remove hardcoded length
nevi-me Feb 12, 2019
b7bdf69
remove `panic!`s
nevi-me Feb 14, 2019
e49b1a6
remove panics, coerce scalar + list to list
nevi-me Feb 14, 2019
c34800b
fix broken test
nevi-me Feb 14, 2019
abd9604
revert deleting mod file
nevi-me Feb 18, 2019
56c92c0
Merge branch 'rust/json-reader' of https://github.com/nevi-me/arrow i…
nevi-me Feb 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/arrow/src/csv/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ impl Default for ReaderBuilder {
impl ReaderBuilder {
/// Create a new builder for configuring CSV parsing options.
///
/// To convert a builder into a reader, call `Reader::from_builder`
/// To convert a builder into a reader, call `ReaderBuilder::build`
///
/// # Example
///
Expand Down
17 changes: 6 additions & 11 deletions rust/arrow/src/mod.rs → rust/arrow/src/json/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,9 @@
// specific language governing permissions and limitations
// under the License.

pub mod array;
pub mod array_data;
pub mod bitmap;
pub mod buffer;
pub mod builder;
pub mod csv;
pub mod datatypes;
pub mod error;
pub mod memory;
pub mod record_batch;
pub mod tensor;
//! Transfer data between the Arrow memory format and JSON line-delimited records.

pub mod reader;

pub use self::reader::Reader;
pub use self::reader::ReaderBuilder;
Loading