File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -1453,20 +1453,6 @@ fn test_rows_index() {
1453
1453
assert_eq ! ( 2i32 , rows. get( 1 ) . get:: <_, i32 >( 0 ) ) ;
1454
1454
}
1455
1455
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
-
1470
1456
#[ test]
1471
1457
fn test_type_names ( ) {
1472
1458
let conn = Connection :: connect ( "postgres://postgres@localhost:5433" , TlsMode :: None ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments