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

Method table

relmodel.hh:70–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68 bool is_base_table;
69 vector<string> constraints;
70 table(string name, string schema, bool insertable, bool base_table)
71 : named_relation(name),
72 schema(schema),
73 is_insertable(insertable),
74 is_base_table(base_table) { }
75 virtual string ident() { return schema + "." + name; }
76 virtual ~table() { };
77};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected