Re: Ooops

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: dave(at)ebox(dot)com
Cc: PostgreSQL-patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: Ooops
Date: 2001-08-07 17:45:32
Message-ID: 200108071745.f77HjW124690@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches


Patch applied. Thanks.

> Bruce,
>
> I think you replaced too many things with put(...
>
> Here is a context diff from latest cvs
>
> And I see why you couldn't apply the last diff, the setCatalog diff has
> been backed out, that was causing the compile problem in the first
> place.
>
> This following one needs to be applied to allow the current cvs to
> compile
>
> Dave
>
> [root(at)ebox2 postgresql]# cvs diff -c Connection.java
> Index: Connection.java
> ===================================================================
> RCS file:
> /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Co
> nnection.java,v
> retrieving revision 1.23
> diff -c -r1.23 Connection.java
> *** Connection.java 2001/08/04 19:46:56 1.23
> --- Connection.java 2001/08/07 17:38:13
> ***************
> *** 120,127 ****
> this_driver = d;
> this_url = url;
> PG_DATABASE = database;
> ! PG_PASSWORD = info.put("password");
> ! PG_USER = info.put("user");
> PG_PORT = port;
> PG_HOST = host;
> PG_STATUS = CONNECTION_BAD;
> --- 120,127 ----
> this_driver = d;
> this_url = url;
> PG_DATABASE = database;
> ! PG_PASSWORD = info.getProperty("password");
> ! PG_USER = info.getProperty("user");
> PG_PORT = port;
> PG_HOST = host;
> PG_STATUS = CONNECTION_BAD;
>
> Dave
>
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Browse pgsql-patches by date

  From Date Subject
Next Message Joe Conway 2001-08-07 18:11:10 Re: Re: Fuzzy matching
Previous Message Paul Ramsey 2001-08-07 17:21:53 Re: contrib/postgis spatial extensions