Properties

Name: pg_amop 
Owner: postgres 
Tablespace:  
Has indexes:  
Has rules:  
Has triggers:  
Inherited Tables Count:
Comment:  

Columns

Name Type Length Default value Comment
  tableoid  oid  -1     
  cmax  cid  -1     
  xmax  xid  -1     
  cmin  cid  -1     
  xmin  xid  -1     
  ctid  tid  -1     
  amopclaid  oid  -1     
  amopsubtype  oid  -1     
  amopstrategy  int2  -1     
  amopreqcheck  bool  -1     
  amopopr  oid  -1     
Total: 11 column(s)

Indexes

Name Unique Primary key Clustered
  pg_amop_opc_strat_index       
  pg_amop_opr_opc_index       
Total: 2 index(es)

SQL


CREATE TABLE pg_amop (
    amopclaid oid NOT NULL,
    amopsubtype oid NOT NULL,
    amopstrategy smallint NOT NULL,
    amopreqcheck boolean NOT NULL,
    amopopr oid NOT NULL
);


ALTER TABLE public.pg_amop OWNER TO postgres;

See Also

List of tables