Update query test to use dayofyear()

This commit is contained in:
Skye Wanderman-Milne
2013-04-15 14:47:23 -07:00
committed by Henry Robinson
parent c74b7e41dd
commit 04bee45af5

View File

@@ -501,7 +501,7 @@ bigint
====
---- QUERY
select timestamp_col, to_date(timestamp_col), year(timestamp_col), month(timestamp_col),
dayofmonth(timestamp_col), day(timestamp_col), weekofyear(timestamp_col),
dayofmonth(timestamp_col), dayofyear(timestamp_col), weekofyear(timestamp_col),
hour(timestamp_col), minute(timestamp_col), second(timestamp_col)
from alltypessmall
---- TYPES