We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d76b406 commit 734d449Copy full SHA for 734d449
src/backend/tcop/utility.c
@@ -9,7 +9,7 @@
9
*
10
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.49 1998/09/01 04:32:16 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.50 1998/09/25 13:47:27 thomas Exp $
13
14
*-------------------------------------------------------------------------
15
*/
@@ -621,7 +621,7 @@ ProcessUtility(Node *parsetree,
621
filename = stmt->filename;
622
closeAllVfds();
623
if ((fp = AllocateFile(filename, "r")) == NULL)
624
- elog(ERROR, "LOAD: could not open file %s", filename);
+ elog(ERROR, "LOAD: could not open file '%s'", filename);
625
FreeFile(fp);
626
load_file(filename);
627
}
0 commit comments