88 *
99 *
1010 * IDENTIFICATION
11- * $PostgreSQL: pgsql/src/backend/optimizer/plan/planner.c,v 1.251 2009/01/09 15:46:10 tgl Exp $
11+ * $PostgreSQL: pgsql/src/backend/optimizer/plan/planner.c,v 1.252 2009/03/24 21:12:56 tgl Exp $
1212 *
1313 *-------------------------------------------------------------------------
1414 */
@@ -2546,8 +2546,8 @@ get_column_info_for_window(PlannerInfo *root, WindowClause *wc, List *tlist,
25462546if (list_length (new_pathkeys )> list_length (pathkeys ))
25472547{
25482548/* this sort clause is actually significant */
2549- * partColIdx [* partNumCols ]= sortColIdx [scidx ++ ];
2550- * partOperators [* partNumCols ]= sgc -> eqop ;
2549+ ( * partColIdx ) [* partNumCols ]= sortColIdx [scidx ++ ];
2550+ ( * partOperators ) [* partNumCols ]= sgc -> eqop ;
25512551(* partNumCols )++ ;
25522552pathkeys = new_pathkeys ;
25532553}
@@ -2565,8 +2565,8 @@ get_column_info_for_window(PlannerInfo *root, WindowClause *wc, List *tlist,
25652565if (list_length (new_pathkeys )> list_length (pathkeys ))
25662566{
25672567/* this sort clause is actually significant */
2568- * ordColIdx [* ordNumCols ]= sortColIdx [scidx ++ ];
2569- * ordOperators [* ordNumCols ]= sgc -> eqop ;
2568+ ( * ordColIdx ) [* ordNumCols ]= sortColIdx [scidx ++ ];
2569+ ( * ordOperators ) [* ordNumCols ]= sgc -> eqop ;
25702570(* ordNumCols )++ ;
25712571pathkeys = new_pathkeys ;
25722572}