You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 20, 2023. It is now read-only.
* fix clippy warnings
* fix test case
* upgrade tarpaulin
* Disable coverage job while it is failing
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
Copy file name to clipboardexpand all lines: datafusion/src/sql/planner.rs
+16-16
Original file line number
Diff line number
Diff line change
@@ -1653,7 +1653,7 @@ mod tests {
1653
1653
let err = logical_plan(sql).expect_err("query should have failed");
1654
1654
assert_eq!(
1655
1655
format!(
1656
-
"Plan(\"Invalid identifier \\\'doesnotexist\\\' for schema {}\")",
1656
+
r#"Plan("Invalid identifier 'doesnotexist' for schema {}")"#,
1657
1657
PERSON_COLUMN_NAMES
1658
1658
),
1659
1659
format!("{:?}", err)
@@ -1665,7 +1665,7 @@ mod tests {
1665
1665
let sql = "SELECT age, age FROM person";
1666
1666
let err = logical_plan(sql).expect_err("query should have failed");
1667
1667
assert_eq!(
1668
-
"Plan(\"Projections require unique expression names but the expression \\\"#age\\\" at position 0 and \\\"#age\\\" at position 1 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
1668
+
r##"Plan("Projections require unique expression names but the expression \"#age\" at position 0 and \"#age\" at position 1 have the same name. Consider aliasing (\"AS\") one of them.")"##,
1669
1669
format!("{:?}", err)
1670
1670
);
1671
1671
}
@@ -1675,7 +1675,7 @@ mod tests {
1675
1675
let sql = "SELECT *, age FROM person";
1676
1676
let err = logical_plan(sql).expect_err("query should have failed");
1677
1677
assert_eq!(
1678
-
"Plan(\"Projections require unique expression names but the expression \\\"#age\\\" at position 3 and \\\"#age\\\" at position 8 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
1678
+
r##"Plan("Projections require unique expression names but the expression \"#age\" at position 3 and \"#age\" at position 8 have the same name. Consider aliasing (\"AS\") one of them.")"##,
1679
1679
format!("{:?}", err)
1680
1680
);
1681
1681
}
@@ -1714,7 +1714,7 @@ mod tests {
1714
1714
let err = logical_plan(sql).expect_err("query should have failed");
1715
1715
assert_eq!(
1716
1716
format!(
1717
-
"Plan(\"Invalid identifier \\\'doesnotexist\\\' for schema {}\")",
1717
+
r#"Plan("Invalid identifier 'doesnotexist' for schema {}")"#,
1718
1718
PERSON_COLUMN_NAMES
1719
1719
),
1720
1720
format!("{:?}", err)
@@ -1727,7 +1727,7 @@ mod tests {
1727
1727
let err = logical_plan(sql).expect_err("query should have failed");
1728
1728
assert_eq!(
1729
1729
format!(
1730
-
"Plan(\"Invalid identifier \\\'x\\\' for schema {}\")",
1730
+
r#"Plan("Invalid identifier 'x' for schema {}")"#,
1731
1731
PERSON_COLUMN_NAMES
1732
1732
),
1733
1733
format!("{:?}", err)
@@ -2200,7 +2200,7 @@ mod tests {
2200
2200
let err = logical_plan(sql).expect_err("query should have failed");
2201
2201
assert_eq!(
2202
2202
format!(
2203
-
"Plan(\"Invalid identifier \\\'doesnotexist\\\' for schema {}\")",
2203
+
r#"Plan("Invalid identifier 'doesnotexist' for schema {}")"#,
2204
2204
PERSON_COLUMN_NAMES
2205
2205
),
2206
2206
format!("{:?}", err)
@@ -2212,7 +2212,7 @@ mod tests {
2212
2212
let sql = "SELECT MIN(age), MIN(age) FROM person";
2213
2213
let err = logical_plan(sql).expect_err("query should have failed");
2214
2214
assert_eq!(
2215
-
"Plan(\"Projections require unique expression names but the expression \\\"#MIN(age)\\\" at position 0 and \\\"#MIN(age)\\\" at position 1 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
2215
+
r##"Plan("Projections require unique expression names but the expression \"#MIN(age)\" at position 0 and \"#MIN(age)\" at position 1 have the same name. Consider aliasing (\"AS\") one of them.")"##,
2216
2216
format!("{:?}", err)
2217
2217
);
2218
2218
}
@@ -2242,7 +2242,7 @@ mod tests {
2242
2242
let sql = "SELECT MIN(age) AS a, MIN(age) AS a FROM person";
2243
2243
let err = logical_plan(sql).expect_err("query should have failed");
2244
2244
assert_eq!(
2245
-
"Plan(\"Projections require unique expression names but the expression \\\"#MIN(age) AS a\\\" at position 0 and \\\"#MIN(age) AS a\\\" at position 1 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
2245
+
r##"Plan("Projections require unique expression names but the expression \"#MIN(age) AS a\" at position 0 and \"#MIN(age) AS a\" at position 1 have the same name. Consider aliasing (\"AS\") one of them.")"##,
2246
2246
format!("{:?}", err)
2247
2247
);
2248
2248
}
@@ -2272,7 +2272,7 @@ mod tests {
2272
2272
let sql = "SELECT state AS a, MIN(age) AS a FROM person GROUP BY state";
2273
2273
let err = logical_plan(sql).expect_err("query should have failed");
2274
2274
assert_eq!(
2275
-
"Plan(\"Projections require unique expression names but the expression \\\"#state AS a\\\" at position 0 and \\\"#MIN(age) AS a\\\" at position 1 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
2275
+
r##"Plan("Projections require unique expression names but the expression \"#state AS a\" at position 0 and \"#MIN(age) AS a\" at position 1 have the same name. Consider aliasing (\"AS\") one of them.")"##,
2276
2276
format!("{:?}", err)
2277
2277
);
2278
2278
}
@@ -2293,7 +2293,7 @@ mod tests {
2293
2293
let err = logical_plan(sql).expect_err("query should have failed");
2294
2294
assert_eq!(
2295
2295
format!(
2296
-
"Plan(\"Invalid identifier \\\'doesnotexist\\\' for schema {}\")",
2296
+
r#"Plan("Invalid identifier 'doesnotexist' for schema {}")"#,
2297
2297
PERSON_COLUMN_NAMES
2298
2298
),
2299
2299
format!("{:?}", err)
@@ -2306,7 +2306,7 @@ mod tests {
2306
2306
let err = logical_plan(sql).expect_err("query should have failed");
2307
2307
assert_eq!(
2308
2308
format!(
2309
-
"Plan(\"Invalid identifier \\\'doesnotexist\\\' for schema {}\")",
2309
+
r#"Plan("Invalid identifier 'doesnotexist' for schema {}")"#,
2310
2310
PERSON_COLUMN_NAMES
2311
2311
),
2312
2312
format!("{:?}", err)
@@ -2318,7 +2318,7 @@ mod tests {
2318
2318
let sql = "SELECT INTERVAL '100000000000000000 day'";
2319
2319
let err = logical_plan(sql).expect_err("query should have failed");
2320
2320
assert_eq!(
2321
-
"NotImplemented(\"Interval field value out of range: \\\"100000000000000000 day\\\"\")",
2321
+
r#"NotImplemented("Interval field value out of range: \"100000000000000000 day\"")"#,
2322
2322
format!("{:?}", err)
2323
2323
);
2324
2324
}
@@ -2328,7 +2328,7 @@ mod tests {
2328
2328
let sql = "SELECT INTERVAL '1 year 1 day'";
2329
2329
let err = logical_plan(sql).expect_err("query should have failed");
2330
2330
assert_eq!(
2331
-
"NotImplemented(\"DF does not support intervals that have both a Year/Month part as well as Days/Hours/Mins/Seconds: \\\"1 year 1 day\\\". Hint: try breaking the interval into two parts, one with Year/Month and the other with Days/Hours/Mins/Seconds - e.g. (NOW() + INTERVAL \\\'1 year\\\') + INTERVAL \\\'1 day\\\'\")",
2331
+
r#"NotImplemented("DF does not support intervals that have both a Year/Month part as well as Days/Hours/Mins/Seconds: \"1 year 1 day\". Hint: try breaking the interval into two parts, one with Year/Month and the other with Days/Hours/Mins/Seconds - e.g. (NOW() + INTERVAL '1 year') + INTERVAL '1 day'")"#,
2332
2332
format!("{:?}", err)
2333
2333
);
2334
2334
}
@@ -2391,7 +2391,7 @@ mod tests {
2391
2391
let sql = "SELECT state, MIN(age), MIN(age) FROM person GROUP BY state";
2392
2392
let err = logical_plan(sql).expect_err("query should have failed");
2393
2393
assert_eq!(
2394
-
"Plan(\"Projections require unique expression names but the expression \\\"#MIN(age)\\\" at position 1 and \\\"#MIN(age)\\\" at position 2 have the same name. Consider aliasing (\\\"AS\\\") one of them.\")",
2394
+
r##"Plan("Projections require unique expression names but the expression \"#MIN(age)\" at position 1 and \"#MIN(age)\" at position 2 have the same name. Consider aliasing (\"AS\") one of them.")"##,
2395
2395
format!("{:?}", err)
2396
2396
);
2397
2397
}
@@ -2451,7 +2451,7 @@ mod tests {
2451
2451
"SELECT ((age + 1) / 2) * (age + 9), MIN(first_name) FROM person GROUP BY age + 1";
2452
2452
let err = logical_plan(sql).expect_err("query should have failed");
0 commit comments