mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 08:20:55 -05:00
The previous functions of assign hooks are now split between check hooks and assign hooks, where the former can fail but the latter shouldn't. Aside from being conceptually clearer, this approach exposes the "canonicalized" form of the variable value to guc.c without having to do an actual assignment. And that lets us fix the problem recently noted by Bernd Helmle that the auto-tune patch for wal_buffers resulted in bogus log messages about "parameter "wal_buffers" cannot be changed without restarting the server". There may be some speed advantage too, because this design lets hook functions avoid re-parsing variable values when restoring a previous state after a rollback (they can store a pre-parsed representation of the value instead). This patch also resolves a longstanding annoyance about custom error messages from variable assign hooks: they should modify, not appear separately from, guc.c's own message about "invalid parameter value".
37 lines
993 B
C
37 lines
993 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* tzparser.h
|
|
* Timezone offset file parsing definitions.
|
|
*
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/utils/tzparser.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef TZPARSER_H
|
|
#define TZPARSER_H
|
|
|
|
#include "utils/datetime.h"
|
|
|
|
/*
|
|
* The result of parsing a timezone configuration file is an array of
|
|
* these structs, in order by abbrev. We export this because datetime.c
|
|
* needs it.
|
|
*/
|
|
typedef struct tzEntry
|
|
{
|
|
/* the actual data: TZ abbrev (downcased), offset, DST flag */
|
|
char *abbrev;
|
|
int offset; /* in seconds from UTC */
|
|
bool is_dst;
|
|
/* source information (for error messages) */
|
|
int lineno;
|
|
const char *filename;
|
|
} tzEntry;
|
|
|
|
|
|
extern TimeZoneAbbrevTable *load_tzoffsets(const char *filename);
|
|
|
|
#endif /* TZPARSER_H */
|