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
21e03211
Commit
21e03211
authored
May 18, 1999
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
20f0cfc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+6
-3
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+1
-1
No files found.
src/interfaces/ecpg/ChangeLog
View file @
21e03211
...
...
@@ -570,14 +570,17 @@ Sat Apr 24 12:39:07 CEST 1999
- Allow more than one blank between EXEC and SQL.
- Allow statements to be prepared from a character string, too.
Fri Ma
i
7 07:11:38 CEST 1999
Fri Ma
y
7 07:11:38 CEST 1999
- Synced preproc.y with gram.y.
- Fixed small bug in parser.
Thu Mai 13 13:51:26 CEST 1999
Thu May 13 13:51:26 CEST 1999
- Synced preproc.y with gram.y.
Mon May 17 18:13:30 CEST 1999
- Synced preproc.y with gram.y.
- Set library version to 3.0.0
- Set ecpg version to 2.6.0
src/interfaces/ecpg/preproc/preproc.y
View file @
21e03211
...
...
@@ -2687,7 +2687,7 @@ LockStmt: LOCK_P opt_table relation_name opt_lock
}
;
opt_lock:
lock_type MODE { $$ = cat2_str($1
, make1_str("mode")); }
opt_lock:
IN lock_type MODE { $$ = cat3_str(make1_str("in"), $2
, make1_str("mode")); }
| /*EMPTY*/ { $$ = make1_str("");}
;
...
...
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