MCPcopy Create free account
hub / github.com/MariaDB/server / check_all_placeholders_set

Method check_all_placeholders_set

sql/sql_prepare.cc:297–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295 }
296
297 bool check_all_placeholders_set() const
298 {
299 for (uint i= 0; i < param_count; i++)
300 {
301 if (param_array[i]->type() == Item_param::PARAM_ITEM)
302 {
303 my_error(ER_WRONG_ARGUMENTS, MYF(0), "OPEN");
304 return true;
305 }
306 }
307 return false;
308 }
309
310private:
311 /**

Callers 1

mysql_sql_stmt_executeFunction · 0.80

Calls 2

my_errorFunction · 0.85
typeMethod · 0.45

Tested by

no test coverage detected