mirror of
https://github.com/postgres/postgres.git
synced 2025-04-21 12:05:57 +03:00
Use EUROPEAN_DATES instead of EUROPEAN_STYLE
This commit is contained in:
parent
3010f46d2a
commit
ec86e4b95b
@ -7,17 +7,17 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.3 1996/08/27 07:32:30 scrappy Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/datetimes.c,v 1.4 1996/10/25 06:02:52 bryanh Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <stdio.h> /* for sprintf() */
|
#include <stdio.h> /* for sprintf() */
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "postgres.h"
|
|
||||||
#include "utils/palloc.h"
|
#include <config.h>
|
||||||
#include "utils/elog.h"
|
#include <postgres.h>
|
||||||
|
#include <utils/palloc.h>
|
||||||
|
#include <utils/elog.h>
|
||||||
|
|
||||||
/* these things look like structs, but we pass them by value so be careful
|
/* these things look like structs, but we pass them by value so be careful
|
||||||
For example, passing an int -> DateADT is not portable! */
|
For example, passing an int -> DateADT is not portable! */
|
||||||
@ -33,9 +33,6 @@ typedef struct TimeADT {
|
|||||||
float sec;
|
float sec;
|
||||||
} TimeADT;
|
} TimeADT;
|
||||||
|
|
||||||
#ifndef EUROPEAN_STYLE
|
|
||||||
#define AMERICAN_STYLE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static int day_tab[2][12] = {
|
static int day_tab[2][12] = {
|
||||||
{31,28,31,30,31,30,31,31,30,31,30,31},
|
{31,28,31,30,31,30,31,31,30,31,30,31},
|
||||||
@ -69,7 +66,7 @@ date_in(char *datestr)
|
|||||||
# define CHECK_DATE_LEN(datestr) 1
|
# define CHECK_DATE_LEN(datestr) 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef AMERICAN_STYLE
|
#ifndef EUROPEAN_DATES
|
||||||
if (!CHECK_DATE_LEN(datestr) ||
|
if (!CHECK_DATE_LEN(datestr) ||
|
||||||
sscanf(datestr, "%d%*c%d%*c%d", &m, &d, &y) != 3) {
|
sscanf(datestr, "%d%*c%d%*c%d", &m, &d, &y) != 3) {
|
||||||
elog(WARN, "date_in: date \"%s\" not of the form mm-dd-yyyy",
|
elog(WARN, "date_in: date \"%s\" not of the form mm-dd-yyyy",
|
||||||
@ -113,7 +110,7 @@ date_out(int4 dateVal)
|
|||||||
date = (DateADT*)&dateStore;
|
date = (DateADT*)&dateStore;
|
||||||
dateStore = dateVal;
|
dateStore = dateVal;
|
||||||
|
|
||||||
#ifdef AMERICAN_STYLE
|
#ifndef EUROPEAN_DATES
|
||||||
sprintf(datestr, "%02d-%02d-%04d",
|
sprintf(datestr, "%02d-%02d-%04d",
|
||||||
(int)date->month, (int)date->day, (int)date->year);
|
(int)date->month, (int)date->day, (int)date->year);
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user