OSDN Git Service

Added fcvt() prot for bsdi.
authorBruce Momjian <bruce@momjian.us>
Tue, 20 May 1997 03:39:02 +0000 (03:39 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 20 May 1997 03:39:02 +0000 (03:39 +0000)
Made PQsetdb() and PQfnumber() case-insensitive.
Removed attempt to set table ownership via pg_dumpall.

src/backend/port/bsdi/port-protos.h
src/bin/pg_dump/pg_dumpall
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-exec.c

index 91e2e08..9d21bb1 100644 (file)
 #ifndef PORT_PROTOS_H
 #define PORT_PROTOS_H
 
+/*
+ * Externals in libc that need prototypes (or at least declarations)
+ */
+
+extern char *ecvt(double, int, int*, int*);
+extern char *fcvt(double, int, int*, int*);
+
+
 #include "fmgr.h"                      /* for func_ptr */
 #include "utils/dynamic_loader.h"
 
index 2cf83c3..dc1d0d6 100644 (file)
@@ -12,12 +12,11 @@ then
 else
        BS='\\'                 # System V
 fi
-psql -l -A -q -t|cut -d"|" -f1-2 | tr '|' ' ' | grep -v '^template1 ' | \
-while read DATABASE USER
+psql -l -A -q -t| tr '|' ' ' | grep -v '^template1 ' | \
+while read DATABASE USERID USER
 do
        echo "${BS}connect template1"
        echo "create database $DATABASE;"
-       echo "update pg_database set datdba = $USER where datname = '$DATABASE';"
        echo "${BS}connect $DATABASE"
        pg_dump "$@" $DATABASE
 done
index 5309a37..c19ed02 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.34 1997/05/13 01:46:00 momjian Exp $
+ *    $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.35 1997/05/20 03:38:49 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -303,7 +303,8 @@ PQsetdb(const char *pghost, const char* pgport, const char* pgoptions, const cha
     /* An error message from some service we call. */
   bool error;   
     /* We encountered an error that prevents successful completion */
-
+  int i;
+  
   conn = (PGconn*)malloc(sizeof(PGconn));
 
   if (conn == NULL) 
@@ -375,6 +376,9 @@ PQsetdb(const char *pghost, const char* pgport, const char* pgoptions, const cha
           ((tmp = getenv("PGDATABASE")))) {
         conn->dbName = strdup(tmp);
       } else conn->dbName = strdup(conn->pguser);
+      for(i = 0; conn->dbName[i]; i++)
+       if (isupper(conn->dbName[i]))
+         conn->dbName[i] = tolower(conn->dbName[i]);
     } else conn->dbName = NULL;
 
     if (error) conn->status = CONNECTION_BAD;
index 5e92e4a..65197c2 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.28 1997/01/24 17:47:33 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.29 1997/05/20 03:39:02 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1471,7 +1471,7 @@ PQfnumber(PGresult *res, const char* field_name)
     return  -1;
 
   for (i=0;i<res->numAttributes;i++) {
-    if ( strcmp(field_name, res->attDescs[i].name) == 0 )
+    if ( strcasecmp(field_name, res->attDescs[i].name) == 0 )
       return i;
   }
   return -1;
@@ -1629,4 +1629,4 @@ PQgetisnull(PGresult *res, int tup_num, int field_num)
         return 1;
     else
         return 0;
-  }
+}