This is an automated email from the ASF dual-hosted git repository.
uwe 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 6df28d3 ARROW-2691: [Rust] Update code formatting with latest Rust
stable
6df28d3 is described below
commit 6df28d35711ec15e56b4cd2428036964c25e296d
Author: Andy Grove <[email protected]>
AuthorDate: Sat Jun 9 22:38:48 2018 +0200
ARROW-2691: [Rust] Update code formatting with latest Rust stable
Author: Andy Grove <[email protected]>
Closes #2126 from andygrove/fix_fmt and squashes the following commits:
a32d9c68 <Andy Grove> cargo fmt with latest rust stable
93d80d1b <Andy Grove> cargo fmt with latest nightly
a0cf37c2 <Andy Grove> Merge remote-tracking branch 'upstream/master'
a18cb386 <Andy Grove> Merge remote-tracking branch 'upstream/master'
82765f93 <Andy Grove> Merge remote-tracking branch 'upstream/master'
d1bfdca5 <Andy Grove> Merge branch 'master' of github.com:andygrove/arrow
52de6a10 <Andy Grove> Merge branch 'master' of github.com:andygrove/arrow
0e2606b2 <Andy Grove> Merge remote-tracking branch 'upstream/master'
d883da2f <Andy Grove> Merge remote-tracking branch 'upstream/master'
589ef71d <Andy Grove> Merge remote-tracking branch 'upstream/master'
bd4fbb55 <Andy Grove> Merge remote-tracking branch 'upstream/master'
9c8a10a4 <Andy Grove> Merge remote-tracking branch 'upstream/master'
05592f8c <Andy Grove> Merge remote-tracking branch 'upstream/master'
8c0e6982 <Andy Grove> Merge remote-tracking branch 'upstream/master'
31ef90ba <Andy Grove> Merge remote-tracking branch 'upstream/master'
2f87c703 <Andy Grove> Fix build - add missing import
---
rust/src/array.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/src/array.rs b/rust/src/array.rs
index 34294a5..3fde1c0 100644
--- a/rust/src/array.rs
+++ b/rust/src/array.rs
@@ -426,7 +426,7 @@ mod tests {
fn test_struct() {
let a: Rc<Array> = Rc::new(PrimitiveArray::from(Buffer::from(vec![1,
2, 3, 4, 5])));
let b: Rc<Array> = Rc::new(PrimitiveArray::from(Buffer::from(vec![
- 1.1, 2.2, 3.3, 4.4, 5.5
+ 1.1, 2.2, 3.3, 4.4, 5.5,
])));
let s = StructArray::from(vec![a, b]);
--
To stop receiving notification emails like this one, please contact
[email protected].