]> granicus.if.org Git - postgresql/commitdiff
Add builtin functions:
authorTatsuo Ishii <ishii@postgresql.org>
Tue, 18 Jan 2000 05:10:29 +0000 (05:10 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Tue, 18 Jan 2000 05:10:29 +0000 (05:10 +0000)
pg_char_to_encoding()
pg_encoding_to_char()

src/backend/utils/init/miscinit.c
src/include/catalog/catversion.h
src/include/catalog/pg_proc.h
src/include/mb/pg_wchar.h
src/include/miscadmin.h

index 22ae84bacdd94f4422a68fcc92a3335085800991..e23549bc8fab948327e1177579005090c1b22291 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.39 2000/01/13 18:26:11 petere Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/utils/init/miscinit.c,v 1.40 2000/01/18 05:10:29 ishii Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -67,12 +67,24 @@ SetDatabaseName(const char *name)
 
 #ifndef MULTIBYTE
 /* even if MULTIBYTE is not enabled, this function is neccesary
- * since pg_proc.h has an entry for it.
+ * since pg_proc.h has entries for them.
  */
 const char *
 getdatabaseencoding()
 {
-       elog(ERROR, "MultiByte strings (MB) must be enabled to use this function");
+       elog(ERROR, "MultiByte support must be enabled to use this function");
+       return ("");
+}
+
+const char *pg_encoding_to_char(int encoding)
+{
+       elog(ERROR, "MultiByte support must be enabled to use this function");
+       return ("");
+}
+
+int    pg_char_to_encoding(const char *encoding_string)
+{
+       elog(ERROR, "MultiByte support must be enabled to use this function");
        return ("");
 }
 
index 5f1472c79e5ea78115f14fad0bb1fa2367d132ac..eca72916b883f15f0a646ed69c34f2945ed7e97f 100644 (file)
@@ -36,7 +36,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: catversion.h,v 1.7 2000/01/14 00:53:50 tgl Exp $
+ * $Id: catversion.h,v 1.8 2000/01/18 05:08:29 ishii Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -52,6 +52,6 @@
  */
 
 /*                          yyyymmddN */
-#define CATALOG_VERSION_NO  200001131
+#define CATALOG_VERSION_NO  200001171
 
 #endif
index e128590cc843e1bc4e7009dff8cc362b6dd240a2..583d53e081fbc8a0b2a0361910d276e66d7be7fc 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: pg_proc.h,v 1.113 2000/01/17 00:40:51 tgl Exp $
+ * $Id: pg_proc.h,v 1.114 2000/01/18 05:08:29 ishii Exp $
  *
  * NOTES
  *       The script catalog/genbki.sh reads this file and generates .bki
@@ -2110,6 +2110,13 @@ DESCR("sequence set value");
 
 /* for multi-byte support */
 DATA(insert OID = 1039 (  getdatabaseencoding     PGUID 11 f t f 0 f 19 "0" 100 0 0 100  getdatabaseencoding - ));
+DESCR("encoding name of current database");
+
+DATA(insert OID = 1295 (  pg_char_to_encoding     PGUID 11 f t f 1 f 23 "19" 100 0 0 100  pg_char_to_encoding - ));
+DESCR("convert encoding name to encoding id");
+
+DATA(insert OID = 1597 (  pg_encoding_to_char     PGUID 11 f t f 1 f 19 "23" 100 0 0 100  pg_encoding_to_char - ));
+DESCR("convert encoding id to encoding name");
 
 /* System-view support functions */
 DATA(insert OID = 1640 (  pg_get_ruledef          PGUID 11 f t f 1 f 25 "19" 100 0 0 100  pg_get_ruledef - ));
index 848c345ac5a747a76a1b9b1afe20e0b06405379a..5162017d2a207295153609d474941bbd499eb772 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: pg_wchar.h,v 1.12 2000/01/15 18:30:35 petere Exp $ */
+/* $Id: pg_wchar.h,v 1.13 2000/01/18 05:08:31 ishii Exp $ */
 
 #ifndef PG_WCHAR_H
 #define PG_WCHAR_H
@@ -121,8 +121,13 @@ extern int pg_get_client_encoding(void);
 extern unsigned char *pg_client_to_server(unsigned char *, int);
 extern unsigned char *pg_server_to_client(unsigned char *, int);
 extern int     pg_valid_client_encoding(const char *);
+
+/* moved to miscadmin.h
+ * pg_proc.h now have them.
 extern const char *pg_encoding_to_char(int);
 extern int     pg_char_to_encoding(const char *);
+*/
+
 extern int     GetDatabaseEncoding(void);
 extern void SetDatabaseEncoding(int);
 extern void SetTemplateEncoding(int);
index ee88a8a5efc5adf5b67c85a9a662fa78c76dd673..324b4437d14695dc58d6bf2f72e58a5cf44dd4e2 100644 (file)
@@ -11,7 +11,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: miscadmin.h,v 1.47 2000/01/13 18:26:15 petere Exp $
+ * $Id: miscadmin.h,v 1.48 2000/01/18 05:08:29 ishii Exp $
  *
  * NOTES
  *       some of the information in this file will be moved to
@@ -119,10 +119,12 @@ extern char *ExpandDatabasePath(const char *path);
 extern void SetDatabaseName(const char *name);
 extern void SetDatabasePath(const char *path);
 
-/* even if MB is not enabled, this function is neccesary
+/* even if MULTIBYTE is not enabled, this function is neccesary
  * since pg_proc.h does have.
  */
 extern const char *getdatabaseencoding(void);
+extern const char *pg_encoding_to_char(int);
+extern int     pg_char_to_encoding(const char *);
 
 extern char *getpgusername(void);
 extern void SetPgUserName(void);