@@ -509,12 +509,12 @@ type_to_box_value!(Vec<u8>, Bytes, Binary(BlobSize::Blob(None)));
509
509
type_to_box_value ! ( String , String , String ( None ) ) ;
510
510
511
511
#[ cfg( feature = "postgres-interval" ) ]
512
- #[ derive( Debug , Eq , PartialEq , Clone , Hash ) ]
513
- pub struct PgIntervalValue {
514
- pub months : i32 ,
515
- pub days : i32 ,
516
- pub microseconds : i64 ,
517
- }
512
+ #[ derive( Debug , Eq , PartialEq , Copy , Clone , Hash ) ]
513
+ pub struct PgIntervalValue {
514
+ pub months : i32 ,
515
+ pub days : i32 ,
516
+ pub microseconds : i64 ,
517
+ }
518
518
519
519
#[ cfg( feature = "with-json" ) ]
520
520
#[ cfg_attr( docsrs, doc( cfg( feature = "with-json" ) ) ) ]
@@ -1920,6 +1920,117 @@ mod tests {
1920
1920
) ;
1921
1921
}
1922
1922
1923
+ #[ test]
1924
+ #[ cfg( feature = "postgres-interval" ) ]
1925
+ fn test_pginterval_value ( ) {
1926
+ let interval = PgIntervalValue {
1927
+ months : 1 ,
1928
+ days : 2 ,
1929
+ microseconds : 300 ,
1930
+ } ;
1931
+ let value: Value = interval. into ( ) ;
1932
+ let out: PgIntervalValue = value. unwrap ( ) ;
1933
+ assert_eq ! ( out, interval) ;
1934
+ }
1935
+
1936
+ #[ test]
1937
+ #[ cfg( feature = "postgres-interval" ) ]
1938
+ fn test_pginterval_query ( ) {
1939
+ use crate :: * ;
1940
+
1941
+ const VALUES : [ ( PgIntervalValue , & str ) ; 10 ] = [
1942
+ (
1943
+ PgIntervalValue {
1944
+ months : 0 ,
1945
+ days : 0 ,
1946
+ microseconds : 1 ,
1947
+ } ,
1948
+ "1 MICROSECONDS" ,
1949
+ ) ,
1950
+ (
1951
+ PgIntervalValue {
1952
+ months : 0 ,
1953
+ days : 0 ,
1954
+ microseconds : 100 ,
1955
+ } ,
1956
+ "100 MICROSECONDS" ,
1957
+ ) ,
1958
+ (
1959
+ PgIntervalValue {
1960
+ months : 0 ,
1961
+ days : 1 ,
1962
+ microseconds : 0 ,
1963
+ } ,
1964
+ "1 DAYS" ,
1965
+ ) ,
1966
+ (
1967
+ PgIntervalValue {
1968
+ months : 0 ,
1969
+ days : 2 ,
1970
+ microseconds : 0 ,
1971
+ } ,
1972
+ "2 DAYS" ,
1973
+ ) ,
1974
+ (
1975
+ PgIntervalValue {
1976
+ months : 0 ,
1977
+ days : 2 ,
1978
+ microseconds : 100 ,
1979
+ } ,
1980
+ "2 DAYS 100 MICROSECONDS" ,
1981
+ ) ,
1982
+ (
1983
+ PgIntervalValue {
1984
+ months : 1 ,
1985
+ days : 0 ,
1986
+ microseconds : 0 ,
1987
+ } ,
1988
+ "1 MONTHS" ,
1989
+ ) ,
1990
+ (
1991
+ PgIntervalValue {
1992
+ months : 2 ,
1993
+ days : 0 ,
1994
+ microseconds : 0 ,
1995
+ } ,
1996
+ "2 MONTHS" ,
1997
+ ) ,
1998
+ (
1999
+ PgIntervalValue {
2000
+ months : 2 ,
2001
+ days : 0 ,
2002
+ microseconds : 100 ,
2003
+ } ,
2004
+ "2 MONTHS 100 MICROSECONDS" ,
2005
+ ) ,
2006
+ (
2007
+ PgIntervalValue {
2008
+ months : 2 ,
2009
+ days : 2 ,
2010
+ microseconds : 0 ,
2011
+ } ,
2012
+ "2 MONTHS 2 DAYS" ,
2013
+ ) ,
2014
+ (
2015
+ PgIntervalValue {
2016
+ months : 2 ,
2017
+ days : 2 ,
2018
+ microseconds : 100 ,
2019
+ } ,
2020
+ "2 MONTHS 2 DAYS 100 MICROSECONDS" ,
2021
+ ) ,
2022
+ ] ;
2023
+
2024
+ for ( interval, formatted) in VALUES {
2025
+ let query = Query :: select ( ) . expr ( interval) . to_owned ( ) ;
2026
+ // MysqlQueryBuilder, SqliteQueryBuilder
2027
+ assert_eq ! (
2028
+ query. to_string( PostgresQueryBuilder ) ,
2029
+ format!( "SELECT '{formatted}'::interval" )
2030
+ ) ;
2031
+ }
2032
+ }
2033
+
1923
2034
#[ test]
1924
2035
#[ cfg( feature = "with-uuid" ) ]
1925
2036
fn test_uuid_value ( ) {
0 commit comments