diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-07-06 19:19:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-07-06 19:19:02 +0000 |
commit | 239d769e7e05e0a5ef3bd6828e93e22ef3962780 (patch) | |
tree | 9660987f1372651b78fb82023739728f2f962a6e /src/backend/commands/indexcmds.c | |
parent | 52783b212c7c0ef5ab2ee6bda17c8db0ed13d4ab (diff) | |
download | postgresql-239d769e7e05e0a5ef3bd6828e93e22ef3962780.tar.gz postgresql-239d769e7e05e0a5ef3bd6828e93e22ef3962780.zip |
pgindent run for 9.0, second run
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r-- | src/backend/commands/indexcmds.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 86871e26a40..780dbc23ede 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.197 2010/06/01 00:33:23 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.198 2010/07/06 19:18:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -785,14 +785,14 @@ CheckMutability(Expr *expr) { /* * First run the expression through the planner. This has a couple of - * important consequences. First, function default arguments will get + * important consequences. First, function default arguments will get * inserted, which may affect volatility (consider "default now()"). * Second, inline-able functions will get inlined, which may allow us to - * conclude that the function is really less volatile than it's marked. - * As an example, polymorphic functions must be marked with the most - * volatile behavior that they have for any input type, but once we - * inline the function we may be able to conclude that it's not so - * volatile for the particular input type we're dealing with. + * conclude that the function is really less volatile than it's marked. As + * an example, polymorphic functions must be marked with the most volatile + * behavior that they have for any input type, but once we inline the + * function we may be able to conclude that it's not so volatile for the + * particular input type we're dealing with. * * We assume here that expression_planner() won't scribble on its input. */ |