From 4c7c279f7017a3510543de5c4b2dff4f15255e65 Mon Sep 17 00:00:00 2001 From: gal salomon Date: Wed, 15 Apr 2020 17:20:52 +0300 Subject: [PATCH] adding utcnow test --- s3tests_boto3/functional/test_s3select.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/s3tests_boto3/functional/test_s3select.py b/s3tests_boto3/functional/test_s3select.py index e568e22..83eb5ce 100644 --- a/s3tests_boto3/functional/test_s3select.py +++ b/s3tests_boto3/functional/test_s3select.py @@ -312,4 +312,8 @@ def test_datetime(): assert res_s3select_date_time == res_s3select_count + # validate that utcnow is integrate correctly with other date-time functions + res_s3select_date_time_utcnow = remove_xml_tags_from_result( run_s3select(bucket_name,csv_obj_name,'select count(0) from stdin where datediff("hours",utcnow(),dateadd("day",1,utcnow())) == 24 ;') ) + + assert res_s3select_date_time_utcnow == res_s3select_count