From 6560407c7db2c7e32926a46f5fb52175ac10d9e5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 9 Jun 2011 14:32:50 -0400 Subject: Pgindent run before 9.1 beta2. --- src/backend/utils/adt/ri_triggers.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/utils/adt/ri_triggers.c') diff --git a/src/backend/utils/adt/ri_triggers.c b/src/backend/utils/adt/ri_triggers.c index fde01a0f571..fa7b8e6e81a 100644 --- a/src/backend/utils/adt/ri_triggers.c +++ b/src/backend/utils/adt/ri_triggers.c @@ -83,7 +83,7 @@ #define RIAttName(rel, attnum) NameStr(*attnumAttName(rel, attnum)) #define RIAttType(rel, attnum) attnumTypeId(rel, attnum) -#define RIAttCollation(rel, attnum) attnumCollationId(rel, attnum) +#define RIAttCollation(rel, attnum) attnumCollationId(rel, attnum) #define RI_TRIGTYPE_INSERT 1 #define RI_TRIGTYPE_UPDATE 2 @@ -3024,8 +3024,8 @@ ri_GenerateQualCollation(StringInfo buf, Oid collation) collname = NameStr(colltup->collname); /* - * We qualify the name always, for simplicity and to ensure the query - * is not search-path-dependent. + * We qualify the name always, for simplicity and to ensure the query is + * not search-path-dependent. */ quoteOneName(onename, get_namespace_name(colltup->collnamespace)); appendStringInfo(buf, " COLLATE %s", onename); @@ -3964,8 +3964,8 @@ ri_AttributesEqual(Oid eq_opr, Oid typeid, } /* - * Apply the comparison operator. We assume it doesn't - * care about collations. + * Apply the comparison operator. We assume it doesn't care about + * collations. */ return DatumGetBool(FunctionCall2(&entry->eq_opr_finfo, oldvalue, newvalue)); -- cgit v1.2.3