[ https://issues.apache.org/jira/browse/DRILL-2393?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Chun Chang closed DRILL-2393. ----------------------------- Assignee: Chun Chang (was: Mehant Baid) [root@qa-node120 resources]# cat Functional/Passing/datetime/datetime153.q select extract(day from now())=extract(day from current_date) from sys.drillbits limit 1; {code} 0: jdbc:drill:schema=dfs.drillTestDirComplexJ> select extract(day from now())=extract(day from current_date) from sys.drillbits limit 1; +------------+ | EXPR$0 | +------------+ | true | +------------+ {code} > The extracted day from now() and current_date are not equal > ----------------------------------------------------------- > > Key: DRILL-2393 > URL: https://issues.apache.org/jira/browse/DRILL-2393 > Project: Apache Drill > Issue Type: Bug > Components: Functions - Drill > Affects Versions: 0.8.0 > Reporter: Chun Chang > Assignee: Chun Chang > Priority: Critical > Fix For: 0.9.0 > > > #Wed Mar 04 01:23:42 EST 2015 > git.commit.id.abbrev=71b6bfe > The extracted 'day' from now() and current_date should be equal, but Drill > returned false: > {code} > 0: jdbc:drill:schema=dfs.drillTestDirComplexJ> select extract(day from > now())=extract(day from current_date) from sys.drillbits limit 1; > +------------+ > | EXPR$0 | > +------------+ > | false | > +------------+ > 1 row selected (0.055 seconds) > 0: jdbc:drill:schema=dfs.drillTestDirComplexJ> select extract(day from > now()), extract(day from current_date) from sys.drillbits limit 1; > +------------+------------+ > | EXPR$0 | EXPR$1 | > +------------+------------+ > | 6 | 5 | > +------------+------------+ > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)