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

Class column

relmodel.hh:37–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35};
36
37struct column {
38 string name;
39 sqltype *type;
40 column(string name) : name(name) { }
41 column(string name, sqltype *t) : name(name), type(t) {
42 assert(t);
43 }
44};
45
46struct relation {
47 vector<column> cols;

Callers 1

select_listMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected