@@ -42,7 +42,6 @@ use mz_repr::adt::datetime::{DateTimeUnits, Timezone};
42
42
use mz_repr:: adt:: interval:: Interval ;
43
43
use mz_repr:: adt:: jsonb:: JsonbRef ;
44
44
use mz_repr:: adt:: numeric:: { self , DecimalLike , Numeric , NumericMaxScale } ;
45
- use mz_repr:: adt:: regex:: Regex ;
46
45
use mz_repr:: proto:: TryFromProtoError ;
47
46
use mz_repr:: { strconv, ColumnName , ColumnType , Datum , DatumType , Row , RowArena , ScalarType } ;
48
47
@@ -4675,12 +4674,12 @@ impl From<&UnaryFunc> for ProtoUnaryFunc {
4675
4674
UnaryFunc :: FloorFloat32 ( _) => todo ! ( ) ,
4676
4675
UnaryFunc :: FloorFloat64 ( _) => todo ! ( ) ,
4677
4676
UnaryFunc :: FloorNumeric ( _) => todo ! ( ) ,
4678
- UnaryFunc :: Ascii => todo ! ( ) ,
4679
- UnaryFunc :: BitLengthBytes => todo ! ( ) ,
4680
- UnaryFunc :: BitLengthString => todo ! ( ) ,
4681
- UnaryFunc :: ByteLengthBytes => todo ! ( ) ,
4682
- UnaryFunc :: ByteLengthString => todo ! ( ) ,
4683
- UnaryFunc :: CharLength => todo ! ( ) ,
4677
+ UnaryFunc :: Ascii ( _ ) => todo ! ( ) ,
4678
+ UnaryFunc :: BitLengthBytes ( _ ) => todo ! ( ) ,
4679
+ UnaryFunc :: BitLengthString ( _ ) => todo ! ( ) ,
4680
+ UnaryFunc :: ByteLengthBytes ( _ ) => todo ! ( ) ,
4681
+ UnaryFunc :: ByteLengthString ( _ ) => todo ! ( ) ,
4682
+ UnaryFunc :: CharLength ( _ ) => todo ! ( ) ,
4684
4683
UnaryFunc :: Chr ( _) => todo ! ( ) ,
4685
4684
UnaryFunc :: IsLikeMatch ( _) => todo ! ( ) ,
4686
4685
UnaryFunc :: IsRegexpMatch ( _) => todo ! ( ) ,
@@ -4703,21 +4702,21 @@ impl From<&UnaryFunc> for ProtoUnaryFunc {
4703
4702
UnaryFunc :: JustifyDays ( _) => todo ! ( ) ,
4704
4703
UnaryFunc :: JustifyHours ( _) => todo ! ( ) ,
4705
4704
UnaryFunc :: JustifyInterval ( _) => todo ! ( ) ,
4706
- UnaryFunc :: JsonbArrayLength => todo ! ( ) ,
4707
- UnaryFunc :: JsonbTypeof => todo ! ( ) ,
4708
- UnaryFunc :: JsonbStripNulls => todo ! ( ) ,
4709
- UnaryFunc :: JsonbPretty => todo ! ( ) ,
4705
+ UnaryFunc :: JsonbArrayLength ( _ ) => todo ! ( ) ,
4706
+ UnaryFunc :: JsonbTypeof ( _ ) => todo ! ( ) ,
4707
+ UnaryFunc :: JsonbStripNulls ( _ ) => todo ! ( ) ,
4708
+ UnaryFunc :: JsonbPretty ( _ ) => todo ! ( ) ,
4710
4709
UnaryFunc :: RoundFloat32 ( _) => todo ! ( ) ,
4711
4710
UnaryFunc :: RoundFloat64 ( _) => todo ! ( ) ,
4712
4711
UnaryFunc :: RoundNumeric ( _) => todo ! ( ) ,
4713
- UnaryFunc :: TrimWhitespace => todo ! ( ) ,
4714
- UnaryFunc :: TrimLeadingWhitespace => todo ! ( ) ,
4715
- UnaryFunc :: TrimTrailingWhitespace => todo ! ( ) ,
4712
+ UnaryFunc :: TrimWhitespace ( _ ) => todo ! ( ) ,
4713
+ UnaryFunc :: TrimLeadingWhitespace ( _ ) => todo ! ( ) ,
4714
+ UnaryFunc :: TrimTrailingWhitespace ( _ ) => todo ! ( ) ,
4716
4715
UnaryFunc :: RecordGet ( _) => todo ! ( ) ,
4717
4716
UnaryFunc :: ListLength => todo ! ( ) ,
4718
4717
UnaryFunc :: MapLength => todo ! ( ) ,
4719
- UnaryFunc :: Upper => todo ! ( ) ,
4720
- UnaryFunc :: Lower => todo ! ( ) ,
4718
+ UnaryFunc :: Upper ( _ ) => todo ! ( ) ,
4719
+ UnaryFunc :: Lower ( _ ) => todo ! ( ) ,
4721
4720
UnaryFunc :: Cos ( _) => todo ! ( ) ,
4722
4721
UnaryFunc :: Acos ( _) => todo ! ( ) ,
4723
4722
UnaryFunc :: Cosh ( _) => todo ! ( ) ,
0 commit comments