File tree 6 files changed +9
-9
lines changed
datafusion/functions/src/string
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl AsciiFunc {
65
65
pub fn new ( ) -> Self {
66
66
Self {
67
67
signature : Signature :: coercible (
68
- vec ! [ TypeSignatureClass :: Native ( logical_string( ) ) ] ,
68
+ vec ! [ TypeSignatureClass :: AnyNative ( logical_string( ) ) ] ,
69
69
Volatility :: Immutable ,
70
70
) ,
71
71
}
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl BitLengthFunc {
59
59
pub fn new ( ) -> Self {
60
60
Self {
61
61
signature : Signature :: coercible (
62
- vec ! [ TypeSignatureClass :: Native ( logical_string( ) ) ] ,
62
+ vec ! [ TypeSignatureClass :: AnyNative ( logical_string( ) ) ] ,
63
63
Volatility :: Immutable ,
64
64
) ,
65
65
}
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ impl ContainsFunc {
66
66
Self {
67
67
signature : Signature :: coercible (
68
68
vec ! [
69
- TypeSignatureClass :: Native ( logical_string( ) ) ,
70
- TypeSignatureClass :: Native ( logical_string( ) ) ,
69
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
70
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
71
71
] ,
72
72
Volatility :: Immutable ,
73
73
) ,
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ impl EndsWithFunc {
67
67
Self {
68
68
signature : Signature :: coercible (
69
69
vec ! [
70
- TypeSignatureClass :: Native ( logical_string( ) ) ,
71
- TypeSignatureClass :: Native ( logical_string( ) ) ,
70
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
71
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
72
72
] ,
73
73
Volatility :: Immutable ,
74
74
) ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl OctetLengthFunc {
59
59
pub fn new ( ) -> Self {
60
60
Self {
61
61
signature : Signature :: coercible (
62
- vec ! [ TypeSignatureClass :: Native ( logical_string( ) ) ] ,
62
+ vec ! [ TypeSignatureClass :: AnyNative ( logical_string( ) ) ] ,
63
63
Volatility :: Immutable ,
64
64
) ,
65
65
}
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ impl StartsWithFunc {
69
69
Self {
70
70
signature : Signature :: coercible (
71
71
vec ! [
72
- TypeSignatureClass :: Native ( logical_string( ) ) ,
73
- TypeSignatureClass :: Native ( logical_string( ) ) ,
72
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
73
+ TypeSignatureClass :: AnyNative ( logical_string( ) ) ,
74
74
] ,
75
75
Volatility :: Immutable ,
76
76
) ,
You can’t perform that action at this time.
0 commit comments