@@ -2234,9 +2234,7 @@ fn test_snowflake_stage_object_names() {
22342234 . zip ( allowed_object_names. iter_mut ( ) )
22352235 {
22362236 let ( formatted_name, object_name) = it;
2237- let sql = format ! (
2238- "COPY INTO {formatted_name} FROM 'gcs://mybucket/./../a.csv'"
2239- ) ;
2237+ let sql = format ! ( "COPY INTO {formatted_name} FROM 'gcs://mybucket/./../a.csv'" ) ;
22402238 match snowflake ( ) . verified_stmt ( & sql) {
22412239 Statement :: CopyIntoSnowflake { into, .. } => {
22422240 assert_eq ! ( into. 0 , object_name. 0 )
@@ -2714,7 +2712,9 @@ fn parse_use() {
27142712 for & quote in & quote_styles {
27152713 // Test double identifier with different type of quotes
27162714 assert_eq ! (
2717- snowflake( ) . verified_stmt( & format!( "USE {quote}CATALOG{quote}.{quote}my_schema{quote}" ) ) ,
2715+ snowflake( ) . verified_stmt( & format!(
2716+ "USE {quote}CATALOG{quote}.{quote}my_schema{quote}"
2717+ ) ) ,
27182718 Statement :: Use ( Use :: Object ( ObjectName ( vec![
27192719 Ident :: with_quote( quote, "CATALOG" ) ,
27202720 Ident :: with_quote( quote, "my_schema" )
@@ -2747,7 +2747,9 @@ fn parse_use() {
27472747 ) ] ) ) )
27482748 ) ;
27492749 assert_eq ! (
2750- snowflake( ) . verified_stmt( & format!( "USE SCHEMA {quote}CATALOG{quote}.{quote}my_schema{quote}" ) ) ,
2750+ snowflake( ) . verified_stmt( & format!(
2751+ "USE SCHEMA {quote}CATALOG{quote}.{quote}my_schema{quote}"
2752+ ) ) ,
27512753 Statement :: Use ( Use :: Schema ( ObjectName ( vec![
27522754 Ident :: with_quote( quote, "CATALOG" ) ,
27532755 Ident :: with_quote( quote, "my_schema" )
0 commit comments