Re: Partitioning...

Поиск
Список
Период
Сортировка
От Milen Kulev
Тема Re: Partitioning...
Дата
Msg-id 007701c68e6f$0e992770$0a00a8c0@trivadis.com
обсуждение исходный текст
Ответ на Re: Partitioning...  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Partitioning...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Thanks for the prompt reply Tom,
What is wrong with random() ?

The following snipped is working ...

 insert into  part(id1, id2, filler)
 select
  11 + round( (random()*9)::bigint,0)  as id1,  --- 11-20 range for id1 , as of  definition
 round( (random()*20)::bigint,0) as id2,
 'TTTTTTTTTTTESTTTTTZZZZZZZZZZZZZZZZZZZ'
 from  generate_series(0,100000);

Regards. Milen

-----Original Message-----
From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of Tom Lane
Sent: Tuesday, June 13, 2006 12:18 AM
To: Milen Kulev
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] Partitioning...


"Milen Kulev" <makulev@gmx.net> writes:
> But When I issue:
>  insert into  part(id1, id2, filler)
>  select
>  round(  (random()*20)::bigint,0) as id1, <---!!! Note that both partitions should be populated!
>  round( (random()*20)::bigint,0) as id2,
>  'TTTTTTTTTTTESTTTTTZZZZZZZZZZZZZZZZZZZ'
>  from  generate_series(0,100000);

>  ERROR:  new row for relation "part_id1_0_10" violates check
> constraint "part_id1_0_10_id1_check"

Don't use random() in your test case.

            regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
       subscribe-nomail command to majordomo@postgresql.org so that your
       message can get through to the mailing list cleanly


В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Partitioning...
Следующее
От: "Milen Kulev"
Дата:
Сообщение: Re: Partitioning...