Fix for psort temp file names, from Vadim.

This commit is contained in:
Bruce Momjian 1997-09-26 20:05:47 +00:00
parent 544992c3d7
commit 5e2c0a87c9
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.24 1997/09/18 14:41:56 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/psort.c,v 1.25 1997/09/26 20:05:47 momjian Exp $
* *
* NOTES * NOTES
* Sorts the first relation into the second relation. * Sorts the first relation into the second relation.
@ -919,7 +919,7 @@ gettape()
* now, copy template with final null into palloc'd space * now, copy template with final null into palloc'd space
*/ */
memmove(tp->tl_name, uniqueName, strlen(uniqueName)); strNcpy(tp->tl_name, uniqueName, MAXPGPATH-1);
file = AllocateFile(tp->tl_name, "w+"); file = AllocateFile(tp->tl_name, "w+");