Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
80db587e
Commit
80db587e
authored
Mar 14, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Here is a little syntax error found in a .y file... A dropped semi.
DwD -- Daryl W. Dunbar
parent
042ec823
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8124 additions
and
8173 deletions
+8124
-8173
src/backend/utils/adt/datetime.c
src/backend/utils/adt/datetime.c
+1
-9
src/interfaces/ecpg/preproc/preproc.c
src/interfaces/ecpg/preproc/preproc.c
+7840
-7881
src/interfaces/ecpg/preproc/preproc.h
src/interfaces/ecpg/preproc/preproc.h
+282
-282
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+1
-1
No files found.
src/backend/utils/adt/datetime.c
View file @
80db587e
...
...
@@ -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)
...
...
src/interfaces/ecpg/preproc/preproc.c
View file @
80db587e
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/preproc/preproc.h
View file @
80db587e
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/preproc/preproc.y
View file @
80db587e
...
...
@@ -2619,7 +2619,7 @@ insert_rest: VALUES '(' res_target_list2 ')'
}
| SelectStmt
{
$$ = $1
$$ = $1
;
}
| '(' columnList ')' VALUES '(' res_target_list2 ')'
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment