mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Run pgindent on a batch of (mostly-planner-related) source files.
Getting annoyed at the amount of unrelated chatter I get from pgindent'ing Rowley's unique-joins patch. Re-indent all the files it touches.
This commit is contained in:
@ -4203,7 +4203,7 @@ _copyList(const List *from)
|
||||
static ExtensibleNode *
|
||||
_copyExtensibleNode(const ExtensibleNode *from)
|
||||
{
|
||||
ExtensibleNode *newnode;
|
||||
ExtensibleNode *newnode;
|
||||
const ExtensibleNodeMethods *methods;
|
||||
|
||||
methods = GetExtensibleNodeMethods(from->extnodename, false);
|
||||
|
@ -879,7 +879,7 @@ _equalPlaceHolderInfo(const PlaceHolderInfo *a, const PlaceHolderInfo *b)
|
||||
static bool
|
||||
_equalExtensibleNode(const ExtensibleNode *a, const ExtensibleNode *b)
|
||||
{
|
||||
const ExtensibleNodeMethods *methods;
|
||||
const ExtensibleNodeMethods *methods;
|
||||
|
||||
COMPARE_STRING_FIELD(extnodename);
|
||||
|
||||
|
@ -2332,7 +2332,7 @@ _outPlannerParamItem(StringInfo str, const PlannerParamItem *node)
|
||||
static void
|
||||
_outExtensibleNode(StringInfo str, const ExtensibleNode *node)
|
||||
{
|
||||
const ExtensibleNodeMethods *methods;
|
||||
const ExtensibleNodeMethods *methods;
|
||||
|
||||
methods = GetExtensibleNodeMethods(node->extnodename, false);
|
||||
|
||||
|
Reference in New Issue
Block a user