MCPcopy Create free account
hub / github.com/activeloopai/deeplake / column_ref_expr

Class column_ref_expr

cpp/query_core/expr.hpp:128–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126};
127
128class column_ref_expr
129{
130public:
131 column_ref_expr(std::string name, std::string table)
132 : name(std::move(name))
133 , table(std::move(table))
134 {
135 }
136
137 const std::string& get_name() const
138 {
139 return name;
140 }
141
142 const std::string& get_table() const
143 {
144 return table;
145 }
146
147 std::string to_string() const;
148
149private:
150 std::string name;
151 std::string table;
152};
153
154class function_ref_expr
155{

Callers 1

make_column_refMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected