Skip to content

Commit 2f0baf8

Browse files
committed
Fix test build
1 parent 6394dc1 commit 2f0baf8

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

postgres/tests/test.rs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1453,20 +1453,6 @@ fn test_rows_index() {
14531453
assert_eq!(2i32, rows.get(1).get::<_, i32>(0));
14541454
}
14551455

1456-
#[test]
1457-
fn test_row_case_insensitive() {
1458-
let conn = Connection::connect("postgres://postgres@localhost:5433", TlsMode::None).unwrap();
1459-
conn.batch_execute(
1460-
"CREATE TEMPORARY TABLE foo (foo INT, \"bAr\" INT, \"Bar\" INT);",
1461-
).unwrap();
1462-
let stmt = conn.prepare("SELECT * FROM foo").unwrap();
1463-
assert_eq!(Some(0), "foo".idx(&stmt.columns()));
1464-
assert_eq!(Some(0), "FOO".idx(&stmt.columns()));
1465-
assert_eq!(Some(1), "bar".idx(&stmt.columns()));
1466-
assert_eq!(Some(1), "bAr".idx(&stmt.columns()));
1467-
assert_eq!(Some(2), "Bar".idx(&stmt.columns()));
1468-
}
1469-
14701456
#[test]
14711457
fn test_type_names() {
14721458
let conn = Connection::connect("postgres://postgres@localhost:5433", TlsMode::None).unwrap();

0 commit comments

Comments
 (0)