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
9d3275e5
Commit
9d3275e5
authored
Oct 10, 2008
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed "create role" parsing to accept optional "with" argument.
parent
56d56412
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+2
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
9d3275e5
...
@@ -2378,6 +2378,10 @@ Wed, 20 Aug 2008 15:49:23 +0200
...
@@ -2378,6 +2378,10 @@ Wed, 20 Aug 2008 15:49:23 +0200
Tue, 07 Oct 2008 14:35:26 +0200
Tue, 07 Oct 2008 14:35:26 +0200
- Synced parser.
- Synced parser.
Fri, 10 Oct 2008 14:03:05 +0200
- Fixed "create role" parsing to accept optional "with" argument.
- Set pgtypes library version to 3.1.
- Set pgtypes library version to 3.1.
- Set compat library version to 3.1.
- Set compat library version to 3.1.
- Set ecpg library version to 6.2.
- Set ecpg library version to 6.2.
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
9d3275e5
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.37
4 2008/10/07 12:43:55
meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.37
5 2008/10/10 12:17:18
meskes Exp $ */
/* Copyright comment */
/* Copyright comment */
%{
%{
...
@@ -1011,7 +1011,7 @@ stmt: AlterDatabaseStmt { output_statement($1, 0, ECPGst_normal); }
...
@@ -1011,7 +1011,7 @@ stmt: AlterDatabaseStmt { output_statement($1, 0, ECPGst_normal); }
*****************************************************************************/
*****************************************************************************/
CreateRoleStmt: CREATE ROLE RoleId opt_with OptRoleList
CreateRoleStmt: CREATE ROLE RoleId opt_with OptRoleList
{ $$ = cat_str(4, make_str("create role"), $3,
make_str("with")
, $5); }
{ $$ = cat_str(4, make_str("create role"), $3,
$4
, $5); }
;
;
opt_with: WITH { $$ = make_str("with"); }
opt_with: WITH { $$ = make_str("with"); }
...
...
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