Hi All,
I have the following situation -
From my spark streaming job, I am inserting value into timestamp column (row_timestamp) as (2015-12-10 12:50:55+0530). I query as -
select * from <table> where row_timestamp = '2015-12-10 12:50:55'.
The above query doesn't return any rows.
I insert another row with timestamp value as 2015-12-10 00:00:00
now if i query as select * from <table> where row_timestamp = '2015-12-10 00:00:00'.
this would return return rows now.
Where does the difference lie ??
Regards,
padma CH