@@ -3546,7 +3546,7 @@ fn parse_drop_function() {
3546
3546
pg( ) . verified_stmt( sql) ,
3547
3547
Statement :: DropFunction {
3548
3548
if_exists: true ,
3549
- func_desc: vec![ DropFuncDesc {
3549
+ func_desc: vec![ DropFunctionDesc {
3550
3550
name: ObjectName ( vec![ Ident {
3551
3551
value: "test_func" . to_string( ) ,
3552
3552
quote_style: None
@@ -3562,7 +3562,7 @@ fn parse_drop_function() {
3562
3562
pg( ) . verified_stmt( sql) ,
3563
3563
Statement :: DropFunction {
3564
3564
if_exists: true ,
3565
- func_desc: vec![ DropFuncDesc {
3565
+ func_desc: vec![ DropFunctionDesc {
3566
3566
name: ObjectName ( vec![ Ident {
3567
3567
value: "test_func" . to_string( ) ,
3568
3568
quote_style: None
@@ -3587,7 +3587,7 @@ fn parse_drop_function() {
3587
3587
Statement :: DropFunction {
3588
3588
if_exists: true ,
3589
3589
func_desc: vec![
3590
- DropFuncDesc {
3590
+ DropFunctionDesc {
3591
3591
name: ObjectName ( vec![ Ident {
3592
3592
value: "test_func1" . to_string( ) ,
3593
3593
quote_style: None
@@ -3605,7 +3605,7 @@ fn parse_drop_function() {
3605
3605
}
3606
3606
] ) ,
3607
3607
} ,
3608
- DropFuncDesc {
3608
+ DropFunctionDesc {
3609
3609
name: ObjectName ( vec![ Ident {
3610
3610
value: "test_func2" . to_string( ) ,
3611
3611
quote_style: None
@@ -3636,7 +3636,7 @@ fn parse_drop_procedure() {
3636
3636
pg( ) . verified_stmt( sql) ,
3637
3637
Statement :: DropProcedure {
3638
3638
if_exists: true ,
3639
- proc_desc: vec![ DropFuncDesc {
3639
+ proc_desc: vec![ DropFunctionDesc {
3640
3640
name: ObjectName ( vec![ Ident {
3641
3641
value: "test_proc" . to_string( ) ,
3642
3642
quote_style: None
@@ -3652,7 +3652,7 @@ fn parse_drop_procedure() {
3652
3652
pg( ) . verified_stmt( sql) ,
3653
3653
Statement :: DropProcedure {
3654
3654
if_exists: true ,
3655
- proc_desc: vec![ DropFuncDesc {
3655
+ proc_desc: vec![ DropFunctionDesc {
3656
3656
name: ObjectName ( vec![ Ident {
3657
3657
value: "test_proc" . to_string( ) ,
3658
3658
quote_style: None
@@ -3677,7 +3677,7 @@ fn parse_drop_procedure() {
3677
3677
Statement :: DropProcedure {
3678
3678
if_exists: true ,
3679
3679
proc_desc: vec![
3680
- DropFuncDesc {
3680
+ DropFunctionDesc {
3681
3681
name: ObjectName ( vec![ Ident {
3682
3682
value: "test_proc1" . to_string( ) ,
3683
3683
quote_style: None
@@ -3695,7 +3695,7 @@ fn parse_drop_procedure() {
3695
3695
}
3696
3696
] ) ,
3697
3697
} ,
3698
- DropFuncDesc {
3698
+ DropFunctionDesc {
3699
3699
name: ObjectName ( vec![ Ident {
3700
3700
value: "test_proc2" . to_string( ) ,
3701
3701
quote_style: None
0 commit comments