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
1a003fbc
Commit
1a003fbc
authored
Sep 20, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various patches from Bryan that *should* clean up the compile problems
ppl are seeing with v2.0
parent
985acb8e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
21 deletions
+20
-21
src/backend/parser/Makefile.inc
src/backend/parser/Makefile.inc
+4
-4
src/backend/parser/gram.y
src/backend/parser/gram.y
+3
-3
src/backend/regex/regcomp.c
src/backend/regex/regcomp.c
+5
-6
src/backend/regex/regerror.c
src/backend/regex/regerror.c
+2
-2
src/backend/regex/regexec.c
src/backend/regex/regexec.c
+3
-3
src/backend/regex/regfree.c
src/backend/regex/regfree.c
+3
-3
No files found.
src/backend/parser/Makefile.inc
View file @
1a003fbc
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.
2 1996/07/23 02:23:32
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.
3 1996/09/20 08:34:10
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -17,9 +17,9 @@ VPATH:= $(VPATH):$(CURDIR)/parser
PARSEYACCS
=
gram.c
$(PARSEYACCS)
:
gram.y
cd
$(objdir)
;
\
$(YACC)
$(YFLAGS)
$<
;
\
mv
y.tab.c gram.c
;
\
cd
$(objdir)
$(YACC)
$(YFLAGS)
$<
mv
y.tab.c gram.c
mv
y.tab.h parse.h
$(objdir)/gram.o
:
gram.c
...
...
src/backend/parser/gram.y
View file @
1a003fbc
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.1
1 1996/08/28 22:50:21
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.1
2 1996/09/20 08:34:14
scrappy Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -122,7 +122,7 @@ static Node *makeA_Expr(int op, char *opname, Node *lexpr, Node *rexpr);
%type <list> queryblock, relation_name_list, OptTableElementList,
tableElementList, OptInherit, definition,
opt_with_func,
opt_with,
def_args, def_name_list, func_argtypes,
opt_with_func, def_args, def_name_list, func_argtypes,
oper_argtypes, OptStmtList, OptStmtBlock, opt_column_list, columnList,
exprList, sort_clause, sortby_list, index_params,
name_list, from_clause, from_list, opt_array_bounds, nest_array_bounds,
...
...
@@ -658,7 +658,7 @@ opt_portal_name: IN name { $$ = $2;}
*****************************************************************************/
IndexStmt: CREATE INDEX index_name ON relation_name
access_method_clause '(' index_params ')' opt_with
access_method_clause '(' index_params ')' opt_with
_func
{
/* should check that access_method is valid,
etc ... but doesn't */
...
...
src/backend/regex/regcomp.c
View file @
1a003fbc
...
...
@@ -47,13 +47,12 @@ static char sccsid[] = "@(#)regcomp.c 8.5 (Berkeley) 3/20/94";
#include <ctype.h>
#include <limits.h>
#include <stdlib.h>
#include <regex.h>
#include
"regex/utils.h"
#include
"regex/regex2.h"
#include
"regex/cclass.h"
#include
"regex/cname.h"
#include
<regex/regex.h>
#include
<regex/utils.h>
#include <regex/regex2.h>
#include
<regex/cclass.h>
#include
<regex/cname.h>
/*
* parse structure, passed up and down to avoid global variables and
...
...
src/backend/regex/regerror.c
View file @
1a003fbc
...
...
@@ -47,9 +47,9 @@ static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94";
#include <ctype.h>
#include <limits.h>
#include <stdlib.h>
#include <regex.h>
#include "regex/utils.h"
#include <regex/regex.h>
#include <regex/utils.h>
/* ========= begin header generated by ./mkh ========= */
#ifdef __cplusplus
...
...
src/backend/regex/regexec.c
View file @
1a003fbc
...
...
@@ -54,10 +54,10 @@ static char sccsid[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
#include <string.h>
#include <limits.h>
#include <ctype.h>
#include <regex.h>
#include "regex/utils.h"
#include "regex/regex2.h"
#include <regex/regex.h>
#include <regex/utils.h>
#include <regex/regex2.h>
static
int
nope
=
0
;
/* for use in asserts; shuts lint up */
...
...
src/backend/regex/regfree.c
View file @
1a003fbc
...
...
@@ -44,10 +44,10 @@ static char sccsid[] = "@(#)regfree.c 8.3 (Berkeley) 3/20/94";
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <regex.h>
#include "regex/utils.h"
#include "regex/regex2.h"
#include <regex/regex.h>
#include <regex/utils.h>
#include <regex/regex2.h>
/*
- regfree - free everything
...
...
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