Re: [HACKERS] Changing constant in src/include/miscadmin.h
> Is it valid to change a constant in src/include/miscadmin.h? > -#define USE_POSTGRES_DATES 0 > +#define USE_POSTGRES_DATES 4 Yes, the code should still work and afaik these values are not embedded anywhere other than in the compiled code so you will stay self-consistant.
[HACKERS] Changing constant in src/include/miscadmin.h
Hello! Is it valid to change a constant in src/include/miscadmin.h? === @@ -150,10 +150,10 @@ #define MAXTZLEN 10 /* max TZ name len, not counting tr. null */ -#define USE_POSTGRES_DATES 0 #define USE_ISO_DATES