@@ -49,50 +49,50 @@ macro_rules! range(
4949 ( '(' , $h: expr ')' ) => (
5050 :: postgres:: types:: range:: Range :: new( None ,
5151 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
52- :: postgres:: types:: range:: Exclusive ) ) )
52+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) )
5353 ) ;
5454 ( '(' , $h: expr ']' ) => (
5555 :: postgres:: types:: range:: Range :: new( None ,
5656 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
57- :: postgres:: types:: range:: Inclusive ) ) )
57+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) )
5858 ) ;
5959 ( '(' $l: expr, ')' ) => (
6060 :: postgres:: types:: range:: Range :: new(
6161 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
62- :: postgres:: types:: range:: Exclusive ) ) , None )
62+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) , None )
6363 ) ;
6464 ( '[' $l: expr, ')' ) => (
6565 :: postgres:: types:: range:: Range :: new(
6666 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
67- :: postgres:: types:: range:: Inclusive ) ) , None )
67+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) , None )
6868 ) ;
6969 ( '(' $l: expr, $h: expr ')' ) => (
7070 :: postgres:: types:: range:: Range :: new(
7171 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
72- :: postgres:: types:: range:: Exclusive ) ) ,
72+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) ,
7373 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
74- :: postgres:: types:: range:: Exclusive ) ) )
74+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) )
7575 ) ;
7676 ( '(' $l: expr, $h: expr ']' ) => (
7777 :: postgres:: types:: range:: Range :: new(
7878 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
79- :: postgres:: types:: range:: Exclusive ) ) ,
79+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) ,
8080 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
81- :: postgres:: types:: range:: Inclusive ) ) )
81+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) )
8282 ) ;
8383 ( '[' $l: expr, $h: expr ')' ) => (
8484 :: postgres:: types:: range:: Range :: new(
8585 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
86- :: postgres:: types:: range:: Inclusive ) ) ,
86+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) ,
8787 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
88- :: postgres:: types:: range:: Exclusive ) ) )
88+ :: postgres:: types:: range:: BoundType :: Exclusive ) ) )
8989 ) ;
9090 ( '[' $l: expr, $h: expr ']' ) => (
9191 :: postgres:: types:: range:: Range :: new(
9292 Some ( :: postgres:: types:: range:: RangeBound :: new( $l,
93- :: postgres:: types:: range:: Inclusive ) ) ,
93+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) ,
9494 Some ( :: postgres:: types:: range:: RangeBound :: new( $h,
95- :: postgres:: types:: range:: Inclusive ) ) )
95+ :: postgres:: types:: range:: BoundType :: Inclusive ) ) )
9696 )
9797)
9898
0 commit comments