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
b304b4a9
Commit
b304b4a9
authored
Feb 05, 2000
by
Tatsuo Ishii
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change function name PQclientencoding to PQclientEncoding since
it seems more suitable for the naming convention in libpq.
parent
ad155605
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/bin/psql/command.c
src/bin/psql/command.c
+2
-2
src/bin/psql/startup.c
src/bin/psql/startup.c
+2
-2
No files found.
src/bin/psql/command.c
View file @
b304b4a9
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.1
6 2000/01/29 16:58:48 petere
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.1
7 2000/02/05 12:27:56 ishii
Exp $
*/
#include <c.h>
#include "command.h"
...
...
@@ -984,7 +984,7 @@ do_connect(const char *new_dbname, const char *new_user)
}
PQsetNoticeProcessor
(
pset
.
db
,
NoticeProcessor
,
NULL
);
pset
.
encoding
=
PQclient
e
ncoding
(
pset
.
db
);
pset
.
encoding
=
PQclient
E
ncoding
(
pset
.
db
);
/* Update variables */
SetVariable
(
pset
.
vars
,
"DBNAME"
,
PQdb
(
pset
.
db
));
...
...
src/bin/psql/startup.c
View file @
b304b4a9
...
...
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.2
0 2000/01/29 16:58:49 petere
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/startup.c,v 1.2
1 2000/02/05 12:27:56 ishii
Exp $
*/
#include <c.h>
...
...
@@ -173,7 +173,7 @@ main(int argc, char **argv)
* We need to save the encoding because we want to have it
* available even if the database connection goes bad.
*/
pset
.
encoding
=
PQclient
e
ncoding
(
pset
.
db
);
pset
.
encoding
=
PQclient
E
ncoding
(
pset
.
db
);
if
(
options
.
action
==
ACT_LIST_DB
)
{
...
...
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