Properties

Name: tid_ops 
OID: 2789 
Owner: postgres 
Default:  
For type: tid 
Access method: btree 
Storage:  
Comment:  
Operator: 1 <(tid,tid) 
Operator: 2 <=(tid,tid) 
Operator: 3 =(tid,tid) 
Operator: 4 >=(tid,tid) 
Function: bttidcmp(tid, tid) 
Function: () 
Function: () 
Function: () 

SQL


CREATE OPERATOR CLASS tid_ops
    DEFAULT FOR TYPE tid USING btree AS
    OPERATOR 1 <(tid,tid) ,
    OPERATOR 2 <=(tid,tid) ,
    OPERATOR 3 =(tid,tid) ,
    OPERATOR 4 >=(tid,tid) ,
    OPERATOR 5 >(tid,tid) ,
    FUNCTION 1 bttidcmp(tid,tid);


ALTER OPERATOR CLASS pg_catalog.tid_ops USING btree OWNER TO postgres;

See Also

List of operator classes