From 49ce6fff1d3415257404899e30733aefdfee2a06 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 18 Jun 2001 16:13:21 +0000 Subject: Allow removal of system-named pg_* temp tables. Rename temp file/dir as pgsql_tmp. --- src/backend/storage/file/fd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/storage/file/fd.c') diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index f37a9573df9..b831e6cc241 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.81 2001/06/11 04:12:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.82 2001/06/18 16:13:21 momjian Exp $ * * NOTES: * @@ -54,8 +54,8 @@ /* Filename components for OpenTemporaryFile */ -#define PG_TEMP_FILES_DIR "pg_tempfiles" -#define PG_TEMP_FILE_PREFIX "pg_temp" +#define PG_TEMP_FILES_DIR "pgsql_tmp" +#define PG_TEMP_FILE_PREFIX "pgsql_tmp" /* -- cgit v1.2.3