We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de1302b commit e552ab7Copy full SHA for e552ab7
rust/cubesql/cubesql/Cargo.toml
@@ -97,7 +97,6 @@ collapsible_else_if = "allow"
97
comparison_chain = "allow"
98
derive_ord_xor_partial_ord = "allow"
99
field_reassign_with_default = "allow"
100
-get_first = "allow"
101
identity_op = "allow"
102
if_same_then_else = "allow"
103
into_iter_on_ref = "allow"
rust/cubesql/cubesql/e2e/tests/postgres.rs
@@ -1269,7 +1269,7 @@ impl AsyncTestSuite for PostgresIntegrationTestSuite {
1269
|rows| {
1270
assert_eq!(rows.len(), 1);
1271
1272
- let columns = rows.get(0).unwrap().columns();
+ let columns = rows.first().unwrap().columns();
1273
assert_eq!(
1274
columns
1275
.into_iter()
0 commit comments