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

Function gen_estore

src/gpre/obj_cxx.cpp:1980–2002  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1978//
1979
1980static void gen_estore( const act* action, int column)
1981{
1982 const gpre_req* request = action->act_request;
1983
1984 // if we did a store ... returning_values aka store2
1985 // just wrap up pending error and return
1986
1987 if (request->req_type == REQ_store2)
1988 {
1989 if (action->act_error)
1990 endp(column);
1991 return;
1992 }
1993
1994 if (action->act_error)
1995 column += INDENT;
1996
1997 align(column);
1998 gen_start(action, request->req_primary, column, true);
1999
2000 if (action->act_error)
2001 endp(column);
2002}
2003
2004
2005//____________________________________________________________

Callers 1

OBJ_CXX_actionFunction · 0.70

Calls 3

endpFunction · 0.70
alignFunction · 0.70
gen_startFunction · 0.70

Tested by

no test coverage detected