pgsql/src/backend/utils/adt (formatting.c oracle_compat.c)

Started by Bruce Momjian - CVS <>over 25 years ago3 messageshackers
Jump to latest
#1Bruce Momjian - CVS <>
bruce_momjian___cvs___@unknown.user

Date: Monday, September 25, 2000 @ 08:58:47
Author: momjian

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/adt
from hub.org:/home/projects/pgsql/tmp/cvs-serv33900/pgsql/src/backend/utils/adt

Modified Files:
formatting.c oracle_compat.c

----------------------------- Log Message -----------------------------

the patch include:

- rename ichar() to chr() (discussed with Tom)

- add docs for oracle compatible routines:

btrim()
ascii()
chr()
repeat()

- fix bug with timezone in to_char()

- all to_char() variants return NULL instead textin("")
if it's needful.

The contrib/odbc is without changes and contains same routines as main
tree ... because I not sure how plans are Thomas with this :-)

Karel
---------------------------------------------------------------------------

This effectively one line patch should fix the fact that
foreign key definitions in create table were erroring if
a primary key was defined. I was using the columns
list to get the columns of the table for comparison, but
it got reused as a temporary list inside the primary key
stuff.

Stephan Szabo

#2Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian - CVS <> (#1)
Re: [COMMITTERS] pgsql/src/backend/utils/adt (formatting.c oracle_compat.c)

This effectively one line patch should fix the fact that
foreign key definitions in create table were erroring if
a primary key was defined. I was using the columns
list to get the columns of the table for comparison, but
it got reused as a temporary list inside the primary key
stuff.

Stephan Szabo

I think this was the fix Stephan was talking about. I grabbed all the
patches a few weeks ago.

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026
#3Stephan Szabo
sszabo@megazone23.bigpanda.com
In reply to: Bruce Momjian (#2)
Re: Re: [COMMITTERS] pgsql/src/backend/utils/adt (formatting.c oracle_compat.c)

Yep, that's the one. I was going to resend, but it had
disappeared from my sent mail for some reason.

On Tue, 17 Oct 2000, Bruce Momjian wrote:

Show quoted text

This effectively one line patch should fix the fact that
foreign key definitions in create table were erroring if
a primary key was defined. I was using the columns
list to get the columns of the table for comparison, but
it got reused as a temporary list inside the primary key
stuff.

I think this was the fix Stephan was talking about. I grabbed all the
patches a few weeks ago.