Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf9d34ce

Browse files
committed
Add missing debug lines during bootstrap
Noticed while playing with changes that mess with the bootstrapsequence; the operations patched here failed to emit anything, leadingthe developer to think that the bug was in the previous operation thatdid emit a message.
1 parentbcdd405 commitf9d34ce

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

‎src/backend/bootstrap/bootparse.y

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,8 @@ Boot_DeclareIndexStmt:
292292
IndexStmt *stmt = makeNode(IndexStmt);
293293
OidrelationId;
294294

295+
elog(DEBUG4,"creating index\"%s\"", $3);
296+
295297
do_start();
296298

297299
stmt->idxname =$3;
@@ -338,6 +340,8 @@ Boot_DeclareUniqueIndexStmt:
338340
IndexStmt *stmt = makeNode(IndexStmt);
339341
OidrelationId;
340342

343+
elog(DEBUG4,"creating unique index\"%s\"", $4);
344+
341345
do_start();
342346

343347
stmt->idxname =$4;
@@ -381,6 +385,8 @@ Boot_DeclareUniqueIndexStmt:
381385
Boot_DeclareToastStmt:
382386
XDECLAREXTOASToidspecoidspecONboot_ident
383387
{
388+
elog(DEBUG4,"creating toast table for table\"%s\"", $6);
389+
384390
do_start();
385391

386392
BootstrapToastTable($6, $3, $4);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp