]> granicus.if.org Git - postgresql/blobdiff - src/backend/commands/operatorcmds.c
pgindent run for 9.0, second run
[postgresql] / src / backend / commands / operatorcmds.c
index 2936c92a94e4c793e656ba482ffd8504acf5abab..fa84a9b9c82ec724f6f36a8f9c799e9e5bbaf6f4 100644 (file)
@@ -9,7 +9,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.46 2010/06/22 11:36:16 rhaas Exp $
+ *       $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.47 2010/07/06 19:18:56 momjian Exp $
  *
  * DESCRIPTION
  *       The "DefineFoo" routines take the parse tree and pick out the
@@ -89,9 +89,9 @@ DefineOperator(List *names, List *parameters)
        oprNamespace = QualifiedNameGetCreationNamespace(names, &oprName);
 
        /*
-        * The SQL standard committee has decided that => should be used for
-        * named parameters; therefore, a future release of PostgreSQL may
-        * disallow it as the name of a user-defined operator.
+        * The SQL standard committee has decided that => should be used for named
+        * parameters; therefore, a future release of PostgreSQL may disallow it
+        * as the name of a user-defined operator.
         */
        if (strcmp(oprName, "=>") == 0)
                ereport(WARNING,