We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c476b commit 9b3d932Copy full SHA for 9b3d932
src/backend/executor/nodeGroup.c
@@ -13,7 +13,7 @@
13
* columns. (ie. tuples from the same group are consecutive)
14
*
15
* IDENTIFICATION
16
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.10 1997/09/12 04:07:43 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.11 1997/10/27 12:00:43 vadim Exp $
17
18
*-------------------------------------------------------------------------
19
*/
@@ -428,7 +428,13 @@ sameGroup(TupleTableSlot *oldslot,
428
* strcmp for comparison
429
430
if (strcmp(val1, val2) != 0)
431
+ {
432
+ pfree (val1);
433
+ pfree (val2);
434
return FALSE;
435
+ }
436
437
438
}
439
else
440
{
0 commit comments