Re: how to do prefix_range default value? - Mailing list pgsql-admin

From Dimitri Fontaine
Subject Re: how to do prefix_range default value?
Date
Msg-id 200904061136.35869.dfontaine@hi-media.com
Whole thread Raw
In response to how to do prefix_range default value?  (Tony Liao <tonyliao@yuehetone.com>)
Responses Re: how to do prefix_range default value?
List pgsql-admin
Hi,

On Friday 03 April 2009 05:03:37 Tony Liao wrote:
>      now I want to insert default value [] to prefix column,because if the
> prefix column is NULL,the returns are not I want (with prefix @>'text').I
> alter column prefix default [],it return error:
> ERROR:  syntax error at or near "["
> LINE 2:    ALTER COLUMN prefix SET DEFAULT [];

You need to have the value protected into quotes, as it's a literal:

dim=# create table tl(a prefix_range default '[]');
CREATE TABLE
dim=# \d tl
                 Table "public.tl"
 Column |     Type     |         Modifiers
--------+--------------+----------------------------
 a      | prefix_range | default '[]'::prefix_range


--
dim

Attachment

pgsql-admin by date:

Previous
From: Tommy Gildseth
Date:
Subject: Re: COPY-ing ASCII file into UTF-8 database
Next
From: Emanuel Calvo Franco
Date:
Subject: Re: COPY-ing ASCII file into UTF-8 database