forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunion.rs
125 lines (115 loc) · 3.23 KB
/
union.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use super::*;
#[tokio::test]
async fn union_all() -> Result<()> {
let ctx = SessionContext::new();
let sql = "SELECT 1 as x UNION ALL SELECT 2 as x";
let actual = execute_to_batches(&ctx, sql).await;
#[rustfmt::skip]
let expected = vec![
"+---+",
"| x |",
"+---+",
"| 1 |",
"| 2 |",
"+---+"
];
assert_batches_eq!(expected, &actual);
Ok(())
}
#[tokio::test]
async fn csv_union_all() -> Result<()> {
let ctx = SessionContext::new();
register_aggregate_csv(&ctx).await?;
let sql =
"SELECT c1 FROM aggregate_test_100 UNION ALL SELECT c1 FROM aggregate_test_100";
let actual = execute(&ctx, sql).await;
assert_eq!(actual.len(), 200);
Ok(())
}
#[tokio::test]
async fn union_distinct() -> Result<()> {
let ctx = SessionContext::new();
let sql = "SELECT 1 as x UNION SELECT 1 as x";
let actual = execute_to_batches(&ctx, sql).await;
#[rustfmt::skip]
let expected = vec![
"+---+",
"| x |",
"+---+",
"| 1 |",
"+---+"
];
assert_batches_eq!(expected, &actual);
Ok(())
}
#[tokio::test]
async fn union_all_with_aggregate() -> Result<()> {
let ctx = SessionContext::new();
let sql =
"SELECT SUM(d) FROM (SELECT 1 as c, 2 as d UNION ALL SELECT 1 as c, 3 AS d) as a";
let actual = execute_to_batches(&ctx, sql).await;
let expected = vec![
"+----------+",
"| SUM(a.d) |",
"+----------+",
"| 5 |",
"+----------+",
];
assert_batches_eq!(expected, &actual);
Ok(())
}
#[tokio::test]
async fn union_schemas() -> Result<()> {
let ctx =
SessionContext::with_config(SessionConfig::new().with_information_schema(true));
let result = ctx
.sql("SELECT 1 A UNION ALL SELECT 2")
.await
.unwrap()
.collect()
.await
.unwrap();
#[rustfmt::skip]
let expected = vec![
"+---+",
"| a |",
"+---+",
"| 1 |",
"| 2 |",
"+---+"
];
assert_batches_eq!(expected, &result);
let result = ctx
.sql("SELECT 1 UNION SELECT 2")
.await
.unwrap()
.collect()
.await
.unwrap();
let expected = vec![
"+----------+",
"| Int64(1) |",
"+----------+",
"| 1 |",
"| 2 |",
"+----------+",
];
assert_batches_eq!(expected, &result);
Ok(())
}