File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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]
14711457fn test_type_names ( ) {
14721458 let conn = Connection :: connect ( "postgres://postgres@localhost:5433" , TlsMode :: None ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments