summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
authorPavan Deolasee2012-03-27 04:44:01 +0000
committerPavan Deolasee2012-03-27 04:44:01 +0000
commitd16e34e9c66b1b7949991adb8b6aba172e4f5a6f (patch)
tree583bb9b9089349d7a466b19a14c146a4172435d0 /src/include/utils
parent118bf9d0bfd000171fd71c37f528db5664d4eb4a (diff)
Honor collations while handling results at the coordinator. This fixes a part of
collation test case failure
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/tuplesort.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/tuplesort.h b/src/include/utils/tuplesort.h
index 7689e6e121..f7ef3e5d4a 100644
--- a/src/include/utils/tuplesort.h
+++ b/src/include/utils/tuplesort.h
@@ -82,7 +82,7 @@ extern Tuplesortstate *tuplesort_begin_datum(Oid datumType,
#ifdef PGXC
extern Tuplesortstate *tuplesort_begin_merge(TupleDesc tupDesc,
int nkeys, AttrNumber *attNums,
- Oid *sortOperators, bool *nullsFirstFlags,
+ Oid *sortOperators, Oid *sortCollations, bool *nullsFirstFlags,
RemoteQueryState *combiner,
int workMem);
#endif