1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00

Change error messages to oids come out as %u and not %d. Change has no

real affect now.
This commit is contained in:
Bruce Momjian
1999-05-10 00:46:32 +00:00
parent b7332c9243
commit 4853495e03
66 changed files with 241 additions and 269 deletions

View File

@@ -311,8 +311,7 @@ _finalize_primnode(void *expr, List **subplan)
}
}
else
elog(ERROR, "_finalize_primnode: can't handle node %d",
nodeTag(expr));
elog(ERROR, "_finalize_primnode: can't handle node %d", nodeTag(expr));
return result;
}
@@ -543,8 +542,7 @@ SS_pull_subplan(Node *expr)
else if (is_subplan(expr))
return lcons(((Expr *) expr)->oper, NULL);
else
elog(ERROR, "SS_pull_subplan: can't handle node %d",
nodeTag(expr));
elog(ERROR, "SS_pull_subplan: can't handle node %d", nodeTag(expr));
return result;
}