*
* variable name, string, null terminated
* variable value, string, null terminated
+ * variable sourcefile, string, null terminated (empty if none)
+ * variable sourceline, integer
* variable source, integer
*/
static void
{
struct config_real *conf = (struct config_real *) gconf;
- /* Could lose precision here? */
- fprintf(fp, "%f", *conf->variable);
+ fprintf(fp, "%.17g", *conf->variable);
}
break;
fputc(0, fp);
- fwrite(&gconf->source, sizeof(gconf->source), 1, fp);
+ if (gconf->sourcefile)
+ fprintf(fp, "%s", gconf->sourcefile);
+ fputc(0, fp);
+
+ fwrite(&gconf->sourceline, 1, sizeof(gconf->sourceline), fp);
+ fwrite(&gconf->source, 1, sizeof(gconf->source), fp);
}
void
{
FILE *fp;
char *varname,
- *varvalue;
- int varsource;
+ *varvalue,
+ *varsourcefile;
+ int varsourceline;
+ GucSource varsource;
/*
* Open file
break;
if ((record = find_option(varname, true, FATAL)) == NULL)
- elog(FATAL, "failed to locate variable %s in exec config params file", varname);
+ elog(FATAL, "failed to locate variable \"%s\" in exec config params file", varname);
+
if ((varvalue = read_string_with_null(fp)) == NULL)
elog(FATAL, "invalid format of exec config params file");
- if (fread(&varsource, sizeof(varsource), 1, fp) == 0)
+ if ((varsourcefile = read_string_with_null(fp)) == NULL)
elog(FATAL, "invalid format of exec config params file");
+ if (fread(&varsourceline, 1, sizeof(varsourceline), fp) != sizeof(varsourceline))
+ elog(FATAL, "invalid format of exec config params file");
+ if (fread(&varsource, 1, sizeof(varsource), fp) != sizeof(varsource))
+ elog(FATAL, "invalid format of exec config params file");
+
+ (void) set_config_option(varname, varvalue,
+ record->context, varsource,
+ GUC_ACTION_SET, true);
+ if (varsourcefile[0])
+ set_config_sourcefile(varname, varsourcefile, varsourceline);
- (void) set_config_option(varname, varvalue, record->context,
- varsource, GUC_ACTION_SET, true);
free(varname);
free(varvalue);
+ free(varsourcefile);
}
FreeFile(fp);