Guest User

Untitled

a guest
Mar 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. CREATE TABLE foo ( a tsrange, EXCLUDE (a WITH &&) );
  2. ERROR: operator &&(anyrange,anyrange) is not a member of operator family "range_ops"
  3. DETAIL: The exclusion operator must be related to the index operator class for the constraint.
  4.  
  5. CREATE TABLE foo (
  6. a tsrange,
  7. EXCLUDE USING GIST (a WITH &&)
  8. );
Add Comment
Please, Sign In to add comment