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
2f7d369a
Commit
2f7d369a
authored
Jul 01, 2005
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify code to double \\ and '.
parent
f009248a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
11 deletions
+9
-11
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+3
-5
src/bin/psql/describe.c
src/bin/psql/describe.c
+2
-2
src/bin/psql/large_obj.c
src/bin/psql/large_obj.c
+2
-2
src/pl/plpgsql/src/gram.y
src/pl/plpgsql/src/gram.y
+2
-2
No files found.
src/bin/initdb/initdb.c
View file @
2f7d369a
...
...
@@ -42,7 +42,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
*
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.8
8 2005/06/28 15:38:12 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.8
9 2005/07/01 17:40:28 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1986,10 +1986,8 @@ escape_quotes(const char *src)
for
(
i
=
0
,
j
=
0
;
i
<
len
;
i
++
)
{
if
(
src
[
i
]
==
'\\'
)
result
[
j
++
]
=
'\\'
;
if
(
src
[
i
]
==
'\''
)
/* ANSI standard, '' */
result
[
j
++
]
=
'\''
;
if
(
src
[
i
]
==
'\\'
||
src
[
i
]
==
'\''
)
result
[
j
++
]
=
src
[
i
];
/* double these */
result
[
j
++
]
=
src
[
i
];
}
result
[
j
]
=
'\0'
;
...
...
src/bin/psql/describe.c
View file @
2f7d369a
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.11
8 2005/06/26 03:03:56
momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.11
9 2005/07/01 17:40:28
momjian Exp $
*/
#include "postgres_fe.h"
#include "describe.h"
...
...
@@ -1899,7 +1899,7 @@ processNamePattern(PQExpBuffer buf, const char *pattern,
/* Ensure chars special to string literals are passed properly */
if
(
*
cp
==
'\''
||
*
cp
==
'\\'
)
appendPQExpBufferChar
(
&
namebuf
,
*
cp
);
appendPQExpBufferChar
(
&
namebuf
,
*
cp
);
/* double these */
i
=
PQmblen
(
cp
,
pset
.
encoding
);
while
(
i
--
)
...
...
src/bin/psql/large_obj.c
View file @
2f7d369a
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.3
7 2005/06/14 02:57:41
momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.3
8 2005/07/01 17:40:28
momjian Exp $
*/
#include "postgres_fe.h"
#include "large_obj.h"
...
...
@@ -178,7 +178,7 @@ do_lo_import(const char *filename_arg, const char *comment_arg)
for
(
i
=
0
;
i
<
slen
;
i
++
)
{
if
(
comment_arg
[
i
]
==
'\''
||
comment_arg
[
i
]
==
'\\'
)
*
bufptr
++
=
'\\'
;
*
bufptr
++
=
comment_arg
[
i
];
/* double these */
*
bufptr
++
=
comment_arg
[
i
];
}
strcpy
(
bufptr
,
"'"
);
...
...
src/pl/plpgsql/src/gram.y
View file @
2f7d369a
...
...
@@ -4,7 +4,7 @@
* procedural language
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.7
7 2005/06/22 01:35:02 neilc
Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.7
8 2005/07/01 17:40:29 momjian
Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
...
...
@@ -387,7 +387,7 @@ decl_statement : decl_varname decl_const decl_datatype decl_notnull decl_defval
while (*cp1 != '\0')
{
if (*cp1 == '\\' || *cp1 == '\'')
*cp2++ =
'\\';
*cp2++ =
*cp1; /* double these */
*cp2++ = *cp1++;
}
strcpy(cp2, "'::refcursor");
...
...
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