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
fd7b9633
Commit
fd7b9633
authored
Jan 18, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for typo in gram.y
parent
be321b74
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
108 additions
and
92 deletions
+108
-92
src/backend/catalog/Makefile
src/backend/catalog/Makefile
+2
-3
src/backend/parser/gram.y
src/backend/parser/gram.y
+2
-2
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+97
-87
src/test/regress/expected/datetime.out
src/test/regress/expected/datetime.out
+7
-0
No files found.
src/backend/catalog/Makefile
View file @
fd7b9633
...
...
@@ -4,7 +4,7 @@
# Makefile for catalog
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.1
5 1999/01/17 06:18:1
4 momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.1
6 1999/01/18 06:32:2
4 momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -57,8 +57,7 @@ depend dep:
clean
:
rm
-f
SUBSYS.o
$(OBJS)
global1.bki.source local1_template1.bki.source
\
global1.description local1_template1.description
\
$(GENBKI)
global1.description local1_template1.description
ifeq
(depend,$(wildcard depend))
include
depend
...
...
src/backend/parser/gram.y
View file @
fd7b9633
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.4
3 1999/01/18 00:09:51
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.4
4 1999/01/18 06:32:25
momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -2794,7 +2794,7 @@ SelectStmt: select_w_o_sort sort_clause for_update_clause
/* finally attach the sort clause */
first_select->sortClause = $2;
first_select>forUpdate = $3;
first_select
-
>forUpdate = $3;
$$ = (Node *)first_select;
}
if ((SelectStmt *)$$)->forUpdate != NULL)
...
...
src/bin/pg_dump/pg_dump.c
View file @
fd7b9633
This diff is collapsed.
Click to expand it.
src/test/regress/expected/datetime.out
View file @
fd7b9633
...
...
@@ -28,6 +28,13 @@ ZeroSecs
@ 0
(1 row)
QUERY: SET DateStyle = 'Postgres,noneuropean';
QUERY: SELECT datetime('1994-01-01', '11:00') AS "Jan_01_1994_11am";
Jan_01_1994_11am
----------------------------
Sat Jan 01 11:00:00 1994 PST
(1 row)
QUERY: CREATE TABLE DATETIME_TBL( d1 datetime);
QUERY: INSERT INTO DATETIME_TBL VALUES ('current');
QUERY: INSERT INTO DATETIME_TBL VALUES ('today');
...
...
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