MCPcopy Create free account
hub / github.com/apache/cloudberry / free_open

Function free_open

src/pl/plpgsql/src/pl_funcs.c:576–588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

574}
575
576static void
577free_open(PLpgSQL_stmt_open *stmt)
578{
579 ListCell *lc;
580
581 free_expr(stmt->argquery);
582 free_expr(stmt->query);
583 free_expr(stmt->dynquery);
584 foreach(lc, stmt->params)
585 {
586 free_expr((PLpgSQL_expr *) lfirst(lc));
587 }
588}
589
590static void
591free_fetch(PLpgSQL_stmt_fetch *stmt)

Callers 1

free_stmtFunction · 0.85

Calls 2

free_exprFunction · 0.85
foreachFunction · 0.50

Tested by

no test coverage detected