case T_LoadStmt:
{
LoadStmt *stmt = (LoadStmt *) parsetree;
- FILE *fp;
- char *filename;
PS_SET_STATUS(commandTag = "LOAD");
CHECK_IF_ABORTED();
- filename = stmt->filename;
- closeAllVfds();
-#ifndef __CYGWIN32__
- if ((fp = AllocateFile(filename, "r")) == NULL)
-#else
- if ((fp = AllocateFile(filename, "rb")) == NULL)
-#endif
- elog(ERROR, "LOAD: could not open file '%s'", filename);
- FreeFile(fp);
- load_file(filename);
+ closeAllVfds(); /* probably not necessary... */
+ load_file(stmt->filename);
}
break;
if (file_scanner == (DynamicFileList *) NULL)
{
if (stat(filename, &stat_buf) == -1)
- elog(ERROR, "stat failed on file %s", filename);
+ elog(ERROR, "stat failed on file '%s': %m", filename);
for (file_scanner = file_list;
file_scanner != (DynamicFileList *) NULL
load_file(char *filename)
{
DynamicFileList *file_scanner,
- *p;
+ *p;
struct stat stat_buf;
-
int done = 0;
+ /*
+ * We need to do stat() in order to determine whether this is the
+ * same file as a previously loaded file; it's also handy so as to
+ * give a good error message if bogus file name given.
+ */
if (stat(filename, &stat_buf) == -1)
- elog(ERROR, "stat failed on file %s", filename);
+ elog(ERROR, "LOAD: could not open file '%s': %m", filename);
if (file_list != (DynamicFileList *) NULL
&& !NOT_EQUAL(stat_buf, *file_list))