MCPcopy Create free account
hub / github.com/4paradigm/OpenMLDB / GetRow

Method GetRow

src/sdk/sql_insert_row.h:137–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135 std::shared_ptr<SQLInsertRow> NewRow();
136 inline uint32_t GetCnt() { return rows_.size(); }
137 inline std::shared_ptr<SQLInsertRow> GetRow(uint32_t i) {
138 if (i >= rows_.size()) {
139 return std::shared_ptr<SQLInsertRow>();
140 }
141 return rows_[i];
142 }
143
144 private:
145 std::shared_ptr<::fedb::nameserver::TableInfo> table_info_;

Callers 6

AddRowMethod · 0.80
TEST_FFunction · 0.80
ExecuteSQLMethod · 0.80
PutRowMethod · 0.80
ExecuteInsertMethod · 0.80
CallProcedureMethod · 0.80

Calls 1

sizeMethod · 0.45

Tested by 1

TEST_FFunction · 0.64