I'm going to generate timestamp from a date
set @inputDate = '2016-04-21';
select timestamp(@inputDate) from dual;
the result is:
2016-04-21 00:00:00
like midnight time. How can I know that the input file was generated without time or it's midnight timestamp?