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
66270c94
Commit
66270c94
authored
Sep 27, 1999
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
d1d97a91
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
7 deletions
+31
-7
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+5
-0
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/Makefile
+1
-1
src/interfaces/ecpg/preproc/keywords.c
src/interfaces/ecpg/preproc/keywords.c
+9
-3
src/interfaces/ecpg/preproc/preproc.y
src/interfaces/ecpg/preproc/preproc.y
+16
-3
No files found.
src/interfaces/ecpg/ChangeLog
View file @
66270c94
...
...
@@ -643,3 +643,8 @@ Fri Sep 17 18:16:34 CEST 1999
- Made sure sqlca is initialized everytime.
- Set library version to 3.0.3
Mon Sep 27 07:40:20 CEST 1999
- Synced preproc.y with gram.y.
- Synced keyword.c.
- Set ecpg version to 2.6.5
src/interfaces/ecpg/preproc/Makefile
View file @
66270c94
...
...
@@ -3,7 +3,7 @@ include $(SRCDIR)/Makefile.global
MAJOR_VERSION
=
2
MINOR_VERSION
=
6
PATCHLEVEL
=
4
PATCHLEVEL
=
5
CFLAGS
+=
-I
../include
-DMAJOR_VERSION
=
$(MAJOR_VERSION)
\
-DMINOR_VERSION
=
$(MINOR_VERSION)
-DPATCHLEVEL
=
$(PATCHLEVEL)
\
...
...
src/interfaces/ecpg/preproc/keywords.c
View file @
66270c94
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.1
6 1999/07/17 20:18:39 momjian
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.1
7 1999/09/27 10:41:02 meskes
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -30,6 +30,7 @@ static ScanKeyword ScanKeywords[] = {
/* name, value */
{
"abort"
,
ABORT_TRANS
},
{
"absolute"
,
ABSOLUTE
},
{
"access"
,
ACCESS
},
{
"action"
,
ACTION
},
{
"add"
,
ADD
},
{
"after"
,
AFTER
},
...
...
@@ -61,6 +62,7 @@ static ScanKeyword ScanKeywords[] = {
{
"collate"
,
COLLATE
},
{
"column"
,
COLUMN
},
{
"commit"
,
COMMIT
},
{
"committed"
,
COMMITTED
},
{
"constraint"
,
CONSTRAINT
},
{
"copy"
,
COPY
},
{
"create"
,
CREATE
},
...
...
@@ -90,7 +92,7 @@ static ScanKeyword ScanKeywords[] = {
{
"encoding"
,
ENCODING
},
{
"end"
,
END_TRANS
},
{
"except"
,
EXCEPT
},
{
"exclusive"
,
EXCLUSIVE
},
{
"execute"
,
EXECUTE
},
{
"exists"
,
EXISTS
},
{
"explain"
,
EXPLAIN
},
...
...
@@ -105,6 +107,7 @@ static ScanKeyword ScanKeywords[] = {
{
"from"
,
FROM
},
{
"full"
,
FULL
},
{
"function"
,
FUNCTION
},
{
"global"
,
GLOBAL
},
{
"grant"
,
GRANT
},
{
"group"
,
GROUP
},
{
"handler"
,
HANDLER
},
...
...
@@ -119,7 +122,6 @@ static ScanKeyword ScanKeywords[] = {
{
"insert"
,
INSERT
},
{
"instead"
,
INSTEAD
},
{
"intersect"
,
INTERSECT
},
{
"interval"
,
INTERVAL
},
{
"into"
,
INTO
},
{
"is"
,
IS
},
...
...
@@ -143,6 +145,7 @@ static ScanKeyword ScanKeywords[] = {
{
"maxvalue"
,
MAXVALUE
},
{
"minute"
,
MINUTE_P
},
{
"minvalue"
,
MINVALUE
},
{
"mode"
,
MODE
},
{
"month"
,
MONTH_P
},
{
"move"
,
MOVE
},
{
"names"
,
NAMES
},
...
...
@@ -199,8 +202,10 @@ static ScanKeyword ScanKeywords[] = {
{
"select"
,
SELECT
},
{
"sequence"
,
SEQUENCE
},
{
"serial"
,
SERIAL
},
{
"serializable"
,
SERIALIZABLE
},
{
"set"
,
SET
},
{
"setof"
,
SETOF
},
{
"share"
,
SHARE
},
{
"show"
,
SHOW
},
{
"start"
,
START
},
{
"statement"
,
STATEMENT
},
...
...
@@ -221,6 +226,7 @@ static ScanKeyword ScanKeywords[] = {
{
"trigger"
,
TRIGGER
},
{
"trim"
,
TRIM
},
{
"true"
,
TRUE_P
},
{
"truncate"
,
TRUNCATE
},
{
"trusted"
,
TRUSTED
},
{
"type"
,
TYPE_P
},
{
"union"
,
UNION
},
...
...
src/interfaces/ecpg/preproc/preproc.y
View file @
66270c94
...
...
@@ -727,7 +727,7 @@ adjust_array(enum ECPGttype type_enum, int *dimension, int *length, int type_dim
OFFSET, OIDS, OPERATOR, PASSWORD, PROCEDURAL,
RENAME, RESET, RETURNS, ROW, RULE,
SERIAL, SEQUENCE, SETOF, SHARE, SHOW, START, STATEMENT, STDIN, STDOUT,
TRUSTED,
TRU
NCATE, TRU
STED,
UNLISTEN, UNTIL, VACUUM, VALID, VERBOSE, VERSION
/* Special keywords, not in the query language - see the "lex" file */
...
...
@@ -777,7 +777,7 @@ adjust_array(enum ECPGttype type_enum, int *dimension, int *length, int type_dim
%type <str> update_target_el opt_id relation_name database_name
%type <str> access_method attr_name class index_name name func_name
%type <str> file_name AexprConst ParamNo TypeId
%type <str> in_expr_nodes a_expr b_expr
%type <str> in_expr_nodes a_expr b_expr
TruncateStmt
%type <str> opt_indirection expr_list extract_list extract_arg
%type <str> position_list substr_list substr_from
%type <str> trim_list in_expr substr_for attr attrs
...
...
@@ -881,6 +881,7 @@ stmt: AddAttrStmt { output_statement($1, 0); }
| ClusterStmt { output_statement($1, 0); }
| DefineStmt { output_statement($1, 0); }
| DestroyStmt { output_statement($1, 0); }
| TruncateStmt { output_statement($1, 0); }
| DropPLangStmt { output_statement($1, 0); }
| DropTrigStmt { output_statement($1, 0); }
| DropUserStmt { output_statement($1, 0); }
...
...
@@ -1948,7 +1949,17 @@ DestroyStmt: DROP TABLE relation_name_list
}
;
/*****************************************************************************
*
* QUERY:
* truncate table relname
*
*****************************************************************************/
TruncateStmt: TRUNCATE TABLE relation_name
{
$$ = cat2_str(make1_str("drop table"), $3);
}
;
/*****************************************************************************
*
...
...
@@ -4283,9 +4294,11 @@ ColId: ident { $$ = $1; }
| INSENSITIVE { $$ = make1_str("insensitive"); }
| INSTEAD { $$ = make1_str("instead"); }
| ISNULL { $$ = make1_str("isnull"); }
| ISOLATION { $$ = make1_str("isolation"); }
| KEY { $$ = make1_str("key"); }
| LANGUAGE { $$ = make1_str("language"); }
| LANCOMPILER { $$ = make1_str("lancompiler"); }
| LEVEL { $$ = make1_str("level"); }
| LOCATION { $$ = make1_str("location"); }
| MATCH { $$ = make1_str("match"); }
| MAXVALUE { $$ = make1_str("maxvalue"); }
...
...
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