2011/1/11 Splitting string into char array with string_to_array
:
>
> The following bug has been logged online:
>
> Bug reference: 5831
> Logged by: Splitting string into char array with string_to_array
> Email address: val...@gmail.com
> PostgreSQL version: 9.0.1
> Operating sys
Peter Eisentraut writes:
> CREATE TYPE zzz_enum AS ENUM ('A', 'B', 'C');
> CREATE TABLE zzz_test1 (z zzz_enum);
> SELECT * FROM zzz_test1 WHERE z = 'A';
> That works. But:
> CREATE DOMAIN zzz AS zzz_enum DEFAULT 'A';
> CREATE TABLE zzz_test2 (z zzz);
> SELECT * FROM zzz_test2 WHERE z = 'A';
> E
CREATE TYPE zzz_enum AS ENUM ('A', 'B', 'C');
CREATE TABLE zzz_test1 (z zzz_enum);
SELECT * FROM zzz_test1 WHERE z = 'A';
That works. But:
CREATE DOMAIN zzz AS zzz_enum DEFAULT 'A';
CREATE TABLE zzz_test2 (z zzz);
SELECT * FROM zzz_test2 WHERE z = 'A';
ERROR: 42883: operator does not exist: zzz
"Richard Baratta" wrote:
> Cannot connect to--> Localhost-5432-with my username being
> postgres. I need this fixed immediately it is used for my
> business. When I type in the password is says Fatal error or along
> those lines.
We would need a bit more detail to be able to help. Please read
The following bug has been logged online:
Bug reference: 5829
Logged by: Listening Platform
Email address: listening.platf...@gmail.com
PostgreSQL version: 8.4 AS
Operating system: Windows 2003 server SP2
Description:No buffer Space Available(maximum connection reache
The following bug has been logged online:
Bug reference: 5830
Logged by: Richard Baratta
Email address: one__eighty__...@hotmail.com
PostgreSQL version: 8.4
Operating system: windows 7
Description:Cannot connect to the server
Details:
Cannot connect to--> Localhost-
"Splitting string into char array with string_to_array"
writes:
> I cannot really remember now for sure, but the splitting string into array
> using an empty string ('') worked for me on pre-9.0 versions to get array of
> string chars.
Really? I get this in all versions since 7.4, where string_
The following bug has been logged online:
Bug reference: 5831
Logged by: Splitting string into char array with string_to_array
Email address: val...@gmail.com
PostgreSQL version: 9.0.1
Operating system: Ubuntu/Linaro 4.4.4-14ubuntu5
Description:Splitting string into c