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
6c134eb6
Commit
6c134eb6
authored
Nov 21, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spell 'precedes', 'preceding' correctly in various places.
parent
cf3b164a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
doc/src/sgml/bki.sgml
doc/src/sgml/bki.sgml
+2
-2
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+2
-2
src/backend/utils/adt/datetime.c
src/backend/utils/adt/datetime.c
+2
-2
src/include/nodes/execnodes.h
src/include/nodes/execnodes.h
+2
-2
src/interfaces/ecpg/lib/execute.c
src/interfaces/ecpg/lib/execute.c
+2
-2
No files found.
doc/src/sgml/bki.sgml
View file @
6c134eb6
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/bki.sgml,v 1.
8 2001/11/21 05:53:40 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/bki.sgml,v 1.
9 2001/11/21 22:57:01 tgl
Exp $
-->
<chapter id="bki">
...
...
@@ -50,7 +50,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/bki.sgml,v 1.8 2001/11/21 05:53:40 thomas E
of a number of tokens, depending on the syntax of the command.
Tokens are usually separated by whitespace, but need not be if
there is no ambiguity. There is no special command separator; the
next token that syntactically cannot belong to the prece
e
ding
next token that syntactically cannot belong to the preceding
command starts a new one. (Usually you would put a new command on
a new line, for clarity.) Tokens can be certain key words, special
characters (parentheses, commas, etc.), numbers, or double-quoted
...
...
doc/src/sgml/libpq.sgml
View file @
6c134eb6
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.
79 2001/11/21 05:53:41 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.
80 2001/11/21 22:57:01 tgl
Exp $
-->
<chapter id="libpq">
...
...
@@ -922,7 +922,7 @@ strings overlap.
characters MAY be escaped) when used as part of a <type>BYTEA</type>
string literal in an <acronym>SQL</acronym> statement. In general, to
escape a character, it is converted into the three digit octal number
equal to the decimal <acronym>ASCII</acronym> value, and prece
e
ded by
equal to the decimal <acronym>ASCII</acronym> value, and preceded by
two backslashes. The single quote (') and backslash (\) characters have
special alternate escape sequences. See the Binary String data type
in the User's Guide for more information. <function>PQescapeBytea
...
...
src/backend/utils/adt/datetime.c
View file @
6c134eb6
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.8
0 2001/11/21 05:58:51 thomas
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.8
1 2001/11/21 22:57:01 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -2070,7 +2070,7 @@ DecodeSpecial(int field, char *lowtoken, int *val)
* an unsigned floating point number. - thomas 1997-11-16
*
* Allow ISO-style time span, with implicit units on number of days
* prece
e
ding an hh:mm:ss field. - thomas 1998-04-30
* preceding an hh:mm:ss field. - thomas 1998-04-30
*/
int
DecodeDateDelta
(
char
**
field
,
int
*
ftype
,
int
nf
,
int
*
dtype
,
struct
tm
*
tm
,
double
*
fsec
)
...
...
src/include/nodes/execnodes.h
View file @
6c134eb6
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: execnodes.h,v 1.6
6 2001/11/05 17:46:34 momjian
Exp $
* $Id: execnodes.h,v 1.6
7 2001/11/21 22:57:01 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -302,7 +302,7 @@ typedef struct EState
*|
*| As a result, many classes have extra slots which they
*| don't use. These slots are denoted (unused) in the
*| comment prece
e
ding the class definition. If you
*| comment preceding the class definition. If you
*| comes up with a better idea of a way of doing things
*| along these lines, then feel free to make your idea
*| known to me.. -cim 10/15/89
...
...
src/interfaces/ecpg/lib/execute.c
View file @
6c134eb6
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.3
2 2001/11/14 11:11:49 meskes
Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.3
3 2001/11/21 22:57:01 tgl
Exp $ */
/*
* The aim is to get a simpler inteface to the database routines.
...
...
@@ -130,7 +130,7 @@ quote_postgres(char *arg, int lineno)
/*
* create a list of variables
* The variables are listed with input variables prece
e
ding outputvariables
* The variables are listed with input variables preceding outputvariables
* The end of each group is marked by an end marker.
* per variable we list:
* type - as defined in ecpgtype.h
...
...
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