@@ -2043,7 +2043,10 @@ fn test_copy_into() {
2043
2043
) ;
2044
2044
assert_eq ! (
2045
2045
from_obj,
2046
- Some ( ObjectName :: from( vec![ Ident :: with_quote( '\'' , "gcs://mybucket/./../a.csv" ) ] ) )
2046
+ Some ( ObjectName :: from( vec![ Ident :: with_quote(
2047
+ '\'' ,
2048
+ "gcs://mybucket/./../a.csv"
2049
+ ) ] ) )
2047
2050
) ;
2048
2051
assert ! ( files. is_none( ) ) ;
2049
2052
assert ! ( pattern. is_none( ) ) ;
@@ -2387,7 +2390,6 @@ fn test_copy_into_copy_options() {
2387
2390
#[ test]
2388
2391
fn test_snowflake_stage_object_names_into_location ( ) {
2389
2392
let mut allowed_object_names = [
2390
- ObjectName :: from ( vec ! [ Ident :: new( "my_company" ) , Ident :: new( "emp_basic" ) ] ) ,
2391
2393
ObjectName :: from ( vec ! [ Ident :: new( "@namespace" ) , Ident :: new( "%table_name" ) ] ) ,
2392
2394
ObjectName :: from ( vec ! [
2393
2395
Ident :: new( "@namespace" ) ,
@@ -2456,7 +2458,10 @@ fn test_snowflake_copy_into() {
2456
2458
assert_eq ! ( snowflake( ) . verified_stmt( sql) . to_string( ) , sql) ;
2457
2459
match snowflake ( ) . verified_stmt ( sql) {
2458
2460
Statement :: CopyIntoSnowflake { into, from_obj, .. } => {
2459
- assert_eq ! ( into, ObjectName :: from( vec![ Ident :: new( "a" ) , Ident :: new( "b" ) ] ) ) ;
2461
+ assert_eq ! (
2462
+ into,
2463
+ ObjectName :: from( vec![ Ident :: new( "a" ) , Ident :: new( "b" ) ] )
2464
+ ) ;
2460
2465
assert_eq ! (
2461
2466
from_obj,
2462
2467
Some ( ObjectName :: from( vec![
0 commit comments