| 17 | #define OID long |
| 18 | |
| 19 | struct pg_type : sqltype { |
| 20 | OID oid_; |
| 21 | char typdelim_; |
| 22 | OID typrelid_; |
| 23 | OID typelem_; |
| 24 | OID typarray_; |
| 25 | char typtype_; |
| 26 | pg_type(string name, |
| 27 | OID oid, |
| 28 | char typdelim, |
| 29 | OID typrelid, |
| 30 | OID typelem, |
| 31 | OID typarray, |
| 32 | char typtype) |
| 33 | : sqltype(name), oid_(oid), typdelim_(typdelim), typrelid_(typrelid), |
| 34 | typelem_(typelem), typarray_(typarray), typtype_(typtype) { } |
| 35 | |
| 36 | virtual bool consistent(struct sqltype *rvalue); |
| 37 | bool consistent_(sqltype *rvalue); |
| 38 | }; |
| 39 | |
| 40 | |
| 41 | struct schema_pqxx : public schema { |
nothing calls this directly
no outgoing calls
no test coverage detected