mirror of
https://github.com/postgres/postgres.git
synced 2025-11-18 02:02:55 +03:00
trace.patch (compilation error)
the gettimeofday doesn't compile under Linux with glibc2 because
the DST_NONE constant is no more defined. It seems that this code
(written by me) has always be wrong but for some reason working.
From: Massimo Dal Zotto <dz@cs.unitn.it>
This commit is contained in:
@@ -37,10 +37,8 @@ extern void read_pg_options(SIGNAL_ARGS);
|
||||
* Trace options, used as index into pg_options.
|
||||
* Must match the constants in pg_options[].
|
||||
*/
|
||||
enum pg_option_enum
|
||||
{
|
||||
TRACE_ALL, /* 0=trace some, 1=trace all, -1=trace
|
||||
* none */
|
||||
enum pg_option_enum {
|
||||
TRACE_ALL, /* 0=trace some, 1=trace all, -1=trace none */
|
||||
TRACE_VERBOSE,
|
||||
TRACE_QUERY,
|
||||
TRACE_PLAN,
|
||||
|
||||
Reference in New Issue
Block a user