Commit b65847b8 authored by Bruce Momjian's avatar Bruce Momjian

Reversed out group by patch.

parent b4564a98
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* columns. (ie. tuples from the same group are consecutive) * columns. (ie. tuples from the same group are consecutive)
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.12 1998/01/26 00:21:02 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.13 1998/01/27 15:41:32 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -415,11 +415,8 @@ sameGroup(TupleTableSlot *oldslot, ...@@ -415,11 +415,8 @@ sameGroup(TupleTableSlot *oldslot,
if (isNull1 == isNull2) if (isNull1 == isNull2)
{ {
/* both are null, they are _not_ equal since if (isNull1) /* both are null, they are equal */
* NULL is not equal to NULL (or anything). continue;
* -- 25 Jan 1998 -- darrenk */
if (isNull1)
return FALSE;
val1 = fmgr(typoutput, attr1, val1 = fmgr(typoutput, attr1,
gettypelem(tupdesc->attrs[att - 1]->atttypid)); gettypelem(tupdesc->attrs[att - 1]->atttypid));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment