MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / par_into

Function par_into

src/gpre/sql.cpp:6026–6041  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6024// Nobody uses its returned value currently.
6025
6026static bool par_into( dyn* statement)
6027{
6028
6029 if (!MSC_match(KW_INTO))
6030 return false;
6031
6032 MSC_match(KW_SQL);
6033 // "SQL" keyword is optional for backward compatibility
6034
6035 if (!MSC_match(KW_DESCRIPTOR))
6036 CPR_s_error("DESCRIPTOR");
6037
6038 statement->dyn_sqlda2 = PAR_native_value(false, false);
6039
6040 return true;
6041}
6042
6043
6044//____________________________________________________________

Callers 2

act_executeFunction · 0.85
act_opencloseFunction · 0.85

Calls 3

MSC_matchFunction · 0.85
CPR_s_errorFunction · 0.85
PAR_native_valueFunction · 0.85

Tested by

no test coverage detected