Commit 80db587e authored by Bruce Momjian's avatar Bruce Momjian

Here is a little syntax error found in a .y file... A dropped semi.

DwD
--
Daryl W. Dunbar
parent 042ec823
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.29 1999/02/21 03:49:30 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.30 1999/03/14 16:40:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -27,14 +27,6 @@
static int date2tm(DateADT dateVal, int *tzp, struct tm * tm, double *fsec, char **tzn);
#ifdef NOT_USED
static int day_tab[2][12] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}};
#define isleap(y) (((y % 4) == 0 && (y % 100) != 0) || (y % 400) == 0)
#endif
#define UTIME_MINYEAR (1901)
#define UTIME_MINMONTH (12)
#define UTIME_MINDAY (14)
......
This diff is collapsed.
This diff is collapsed.
......@@ -2619,7 +2619,7 @@ insert_rest: VALUES '(' res_target_list2 ')'
}
| SelectStmt
{
$$ = $1
$$ = $1;
}
| '(' columnList ')' VALUES '(' res_target_list2 ')'
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment