On a tangent note it’s amazing how hard it is to have a good case-insensitive search in Postgres. In SQL Server you just use case-insensitive collation (which is a default) and add an index (it’s the only one non-clustered) and call it a day. In postgres you need to go above and beyond just for that. It’s like postgres guys were “nah dog, everybody just uses lowercase; you don’t need to worry of people writing john d…
`TIMESTAMPTZ` / `TIMESTAMP WITH TIME ZONE` exists?