fixed name ambiguity
This commit is contained in:
parent
4cda0f2664
commit
e14d9a77eb
|
|
@ -23,9 +23,9 @@ struct column
|
||||||
column(sql_function_t func, std::string name); // NOLINT(*-explicit-constructor)
|
column(sql_function_t func, std::string name); // NOLINT(*-explicit-constructor)
|
||||||
column(std::string table_name, std::string name, std::string as);
|
column(std::string table_name, std::string name, std::string as);
|
||||||
column(std::string table_name, const char* name, std::string as);
|
column(std::string table_name, const char* name, std::string as);
|
||||||
column(table &t, const char* name, std::string as);
|
column(struct table &t, const char* name, std::string as);
|
||||||
|
|
||||||
bool equals(const column &x) const;
|
[[nodiscard]] bool equals(const column &x) const;
|
||||||
|
|
||||||
column& as(std::string a);
|
column& as(std::string a);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue