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
6949fc02
Commit
6949fc02
authored
Apr 20, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove pg_encoding. Not needed anymore since we have an initdb in C.
parent
41fa9e9b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
135 deletions
+2
-135
src/bin/Makefile
src/bin/Makefile
+2
-3
src/bin/pg_encoding/Makefile
src/bin/pg_encoding/Makefile
+0
-32
src/bin/pg_encoding/pg_encoding.c
src/bin/pg_encoding/pg_encoding.c
+0
-100
No files found.
src/bin/Makefile
View file @
6949fc02
...
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.4
2 2004/04/20 00:33:47 pgsql
Exp $
# $PostgreSQL: pgsql/src/bin/Makefile,v 1.4
3 2004/04/20 00:40:06 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -14,8 +14,7 @@ top_builddir = ../..
include
$(top_builddir)/src/Makefile.global
DIRS
:=
initdb initlocation ipcclean pg_ctl pg_dump
\
psql scripts pg_config pg_controldata pg_resetxlog
\
pg_encoding
psql scripts pg_config pg_controldata pg_resetxlog
all install installdirs uninstall depend distprep
:
@
for
dir
in
$(DIRS)
;
do
$(MAKE)
-C
$$
dir
$@
||
exit
;
done
...
...
src/bin/pg_encoding/Makefile
deleted
100644 → 0
View file @
41fa9e9b
#-------------------------------------------------------------------------
#
# Makefile for src/bin/pg_encoding
#
# Copyright (c) 1998, PostgreSQL Global Development Group
#
# $PostgreSQL: pgsql/src/bin/pg_encoding/Makefile,v 1.16 2003/11/29 19:52:05 pgsql Exp $
#
#-------------------------------------------------------------------------
subdir
=
src/bin/pg_encoding
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
OBJS
=
pg_encoding.o
all
:
submake-libpq submake-libpgport pg_encoding
pg_encoding
:
$(OBJS)
$(CC)
$(CFLAGS)
$^
$(libpq)
$(LDFLAGS)
$(LIBS)
-o
$@
install
:
all installdirs
$(INSTALL_PROGRAM)
pg_encoding
$(X)
$(DESTDIR)$(bindir)
/pg_encoding
$(X)
installdirs
:
$(mkinstalldirs)
$(DESTDIR)$(bindir)
uninstall
:
rm
-f
$(DESTDIR)$(bindir)
/pg_encoding
$(X)
clean distclean maintainer-clean
:
rm
-f
pg_encoding
$(X)
pg_encoding.o
src/bin/pg_encoding/pg_encoding.c
deleted
100644 → 0
View file @
41fa9e9b
/*-------------------------------------------------------------------------
*
* pg_encoding.c
*
*
* Copyright (c) 1998-2003, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_encoding/pg_encoding.c,v 1.14 2003/11/29 19:52:05 pgsql Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "miscadmin.h"
#include "mb/pg_wchar.h"
#include <ctype.h>
static
void
usage
(
void
);
int
main
(
int
argc
,
char
**
argv
)
{
char
*
p
;
int
enc
;
bool
be_only
=
FALSE
;
if
(
argc
<
2
)
{
usage
();
exit
(
1
);
}
if
(
strcmp
(
argv
[
1
],
"-b"
)
==
0
)
{
if
(
argc
<
3
)
{
usage
();
exit
(
1
);
}
be_only
=
TRUE
;
p
=
argv
[
2
];
}
else
p
=
argv
[
1
];
if
(
p
&&
*
p
&&
isdigit
((
unsigned
char
)
*
p
))
{
/*
* Encoding number to name
*/
char
*
name
;
enc
=
atoi
(
p
);
if
((
name
=
(
char
*
)
pg_encoding_to_char
(
enc
)))
{
if
(
be_only
&&
pg_valid_server_encoding
(
name
)
<
0
)
exit
(
1
);
/*
* pg_encoding_to_char() returns "" if invalid encoding number
* is given
*/
else
if
(
strcmp
(
""
,
name
))
printf
(
"%s
\n
"
,
name
);
else
exit
(
1
);
}
exit
(
0
);
}
else
if
(
p
&&
*
p
)
{
/*
* Encoding name to encoding number
*/
if
((
enc
=
pg_char_to_encoding
(
p
))
>=
0
)
{
if
(
be_only
&&
pg_valid_server_encoding
(
p
)
<
0
)
exit
(
1
);
printf
(
"%d
\n
"
,
enc
);
}
else
exit
(
1
);
exit
(
0
);
}
exit
(
1
);
}
static
void
usage
()
{
fprintf
(
stderr
,
"
\n
Usage: pg_encoding [options] encoding_name | encoding_number
\n\n
"
"options:"
" -b check if encoding is valid for backend
\n\n
"
);
}
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