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

Function dump_while

src/pl/plpgsql/src/pl_funcs.c:1062–1074  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1060}
1061
1062static void
1063dump_while(PLpgSQL_stmt_while *stmt)
1064{
1065 dump_ind();
1066 printf("WHILE ");
1067 dump_expr(stmt->cond);
1068 printf("\n");
1069
1070 dump_stmts(stmt->body);
1071
1072 dump_ind();
1073 printf(" ENDWHILE\n");
1074}
1075
1076static void
1077dump_fori(PLpgSQL_stmt_fori *stmt)

Callers 1

dump_stmtFunction · 0.85

Calls 3

dump_indFunction · 0.85
dump_exprFunction · 0.85
dump_stmtsFunction · 0.85

Tested by

no test coverage detected