Hi,
Dollar in identifier is currently working, you just have to doublequote the
identifier.
create table "foo$" (
"foo$" int4
);
select * from "foo$";
select "foo$" from "foo$";
works just fine. Or
create table "$foo" (
"$foo" int4
);
select * from "$foo";
select "$foo" from "$foo";
also works.
Perhaps it may be some problems with pl/pgsql, not tested...
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])
- Re: [HACKERS] Dollar in identifiers Jan Wieck
- Re: [HACKERS] Dollar in identifiers Bruce Momjian
- Re: [HACKERS] Dollar in identifiers Jan Wieck
- Re: [HACKERS] Dollar in identifiers Bruce Momjian
- [HACKERS] Re: Dollar in identifiers Ian Lance Taylor
- Re: [HACKERS] Dollar in identifiers Peter Eisentraut
- Re: [HACKERS] Dollar in identifiers Jan Wieck
- Re: [HACKERS] Dollar in identifiers Bruce Momjian
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Jan Wieck
- Re: [HACKERS] Dollar in identifiers Gilles DAROLD
- Re: [HACKERS] Dollar in identifiers Bruce Momjian
- Re: [HACKERS] Dollar in identifiers Thomas Lockhart
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Peter Eisentraut
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Jan Wieck
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Tom Lane
- Re: [HACKERS] Dollar in identifiers Bruce Momjian
