Stemming from my other question: When would a PostGIS geometry compare using ~= return true when ST_Equals returns false?, what is the PostGIS 2.x equivalent of the pre-PostGIS 1.5 ~= operator?
It appears that from 1.4 to 1.5, the ~= operator changed from an "exactly equal" to an "bnd equal":
For example, in v1.3:
http://postgis.net/docs/manual-1.3/ch06.html#id439812
The "~=" operator is the "same as" operator. It tests actual geometric equality of two features. So if A and B are the same feature, vertex-by-vertex, the operator returns true.
and in 1.5 and later:
http://postgis.net/docs/manual-1.5/ST_Geometry_Same.html
Returns TRUE if A's bounding box is the same as B's.
I'm mostly interested in PostGIS2.0, but I'm not tagging a specific version and leaving it open.

ST_EqualsandST_OrderingEqualsprovide a very similar operation to what you're asking for but, from the examples they provide, clearly indicate that the comparison is not made vertex-to-vertex. However, is it possible they suit your needs? – Arthur Feb 03 '14 at 19:52ST_Equalssuits my needs, but asked the question for future reference/curiosity. I didn't know aboutST_OrderingEquals, but that looks more practical than a vertex-by-vertex comparison. – Jay Cummins Feb 03 '14 at 21:01