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