--
-- timestamp_lt_date/2
--
create or replace function timestamp_lt_date(
  timestamp without time zone,
  date
) returns bool as $$
timestamp_lt_date$$ language plpgsql;