Re: [HACKERS] Almost there on column aliases

From: Thomas Lockhart <lockhart(at)alumni(dot)caltech(dot)edu>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Postgres Hackers List <hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] Almost there on column aliases
Date: 2000-02-17 15:17:34
Message-ID: 38AC110E.42C81175@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> > I'm currently (2000-02-16 15:40 GMT) seeing the rules test
> > blank-filling the "bpchar" fields. Do you see that?

Hmm. Still seeing it; here is a snippet from a diff of
results/rules.out and expected/rules.out:

...
< rtest_emp | rtest_emp_ins | CREATE RULE rtest_emp_ins
AS ON INSERT TO rtest_emp DO
INSERT INTO rtest_emplog (ename, who, "action", newsal, oldsal)
VALUES (new.ename, getpgusername(),
'hired '::bpchar, new.salary, '$0.00'::money);
...
> rtest_emp | rtest_emp_ins | CREATE RULE rtest_emp_ins
AS ON INSERT TO rtest_emp DO
INSERT INTO rtest_emplog (ename, who, "action", newsal, oldsal)
VALUES (new.ename, getpgusername(),
'hired'::bpchar, new.salary, '$0.00'::money);
...

But if you are not seeing it, then perhaps my "make clean install"
isn't sufficient; I'll try a clean checkout sometime...

- Thomas

--
Thomas Lockhart lockhart(at)alumni(dot)caltech(dot)edu
South Pasadena, California

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-02-17 15:41:38 Re: [HACKERS] Definitional issue for INET types
Previous Message Thomas Lockhart 2000-02-17 15:11:19 Re: [HACKERS] create database doesn't work well in MULTIBYTE mode