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
80c3241d
Commit
80c3241d
authored
Sep 02, 1998
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support CREATE TABLE DEFAULT VALUES statement.
parent
e6c1fbab
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
src/backend/parser/gram.y
src/backend/parser/gram.y
+12
-1
No files found.
src/backend/parser/gram.y
View file @
80c3241d
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.2
8 1998/09/01 03:24:08 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.2
9 1998/09/02 15:47:30 thomas
Exp $
*
*
* HISTORY
* HISTORY
* AUTHOR DATE MAJOR EVENT
* AUTHOR DATE MAJOR EVENT
...
@@ -2344,6 +2344,17 @@ insert_rest: VALUES '(' res_target_list2 ')'
...
@@ -2344,6 +2344,17 @@ insert_rest: VALUES '(' res_target_list2 ')'
$$->havingClause = NULL;
$$->havingClause = NULL;
$$->unionClause = NIL;
$$->unionClause = NIL;
}
}
| DEFAULT VALUES
{
$$ = makeNode(InsertStmt);
$$->unique = NULL;
$$->targetList = NIL;
$$->fromClause = NIL;
$$->whereClause = NULL;
$$->groupClause = NIL;
$$->havingClause = NULL;
$$->unionClause = NIL;
}
| SELECT opt_unique res_target_list2
| SELECT opt_unique res_target_list2
from_clause where_clause
from_clause where_clause
group_clause having_clause
group_clause having_clause
...
...
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