Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. test_tbl=# CREATE INDEX idx_network_info_network_gist
  2. test_tbl-# ON network_info USING gist(network);
  3. ERROR: data type cidr has no default operator class for access method "gist"
  4. HINT: You must specify an operator class for the index or define a default operator class for the data type.
  5.  
  6. test_tbl=# CREATE INDEX idx_ipaddr_info_ipaddr_gist
  7. test_tbl-# ON ipaddr_info USING gist(ipaddr);
  8. ERROR: data type inet has no default operator class for access method "gist"
  9. HINT: You must specify an operator class for the index or define a default operator class for the data type.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement