MCPcopy Create free account
hub / github.com/anse1/sqlsmith / pg_type

Class pg_type

postgres.hh:19–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17#define OID long
18
19struct 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
41struct schema_pqxx : public schema {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected