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
fe91cd41
Commit
fe91cd41
authored
Oct 06, 1998
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
If we're going to offer a default definition of PQmblen,
it probably ought to actually work.
parent
a4fd4cdc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
src/interfaces/libpq/fe-print.c
src/interfaces/libpq/fe-print.c
+3
-4
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-fe.h
+2
-3
No files found.
src/interfaces/libpq/fe-print.c
View file @
fe91cd41
...
...
@@ -9,7 +9,7 @@
* didn't really belong there.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.1
4 1998/10/06 03:02:25 momjian
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.1
5 1998/10/06 14:16:50 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -515,13 +515,12 @@ PQmblen(unsigned char *s)
#else
#ifdef WIN32
/* Provide a default definition in case someone calls it anyway */
int
PQmblen
(
unsigned
char
*
s
)
{
return
1
;
}
#endif
/* WIN32 */
#endif
/* MULTIBYTE */
...
...
src/interfaces/libpq/libpq-fe.h
View file @
fe91cd41
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.4
4 1998/10/01 01:40:23
tgl Exp $
* $Id: libpq-fe.h,v 1.4
5 1998/10/06 14:16:49
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -283,9 +283,8 @@ extern "C"
int
width
);
/* width of column, if
* 0, use variable width */
#ifdef MULTIBYTE
/* Determine length of multibyte encoded char at *s */
extern
int
PQmblen
(
unsigned
char
*
s
);
#endif
/* === in fe-lobj.c === */
...
...
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