Re: BigIntegerField support: Ticket #399

2008-04-26 Thread Martin Diers
On Apr 25, 2008, at 9:22 PM, Malcolm Tredinnick wrote: > Hold on. One of the reasons a fair bit of effort was put into making > it > much easier to subclass model fields is so that we don't have to play > this endless game of adding every type of specialised field under the > sun. > > If your

Re: BigIntegerField support: Ticket #399

2008-04-26 Thread Alex Myodov
I fixed all these problems for me already, Malcolm; but it seems it may be confusing for some people that Django does not support more than 4.2G entries in a table out-of-the-box, without such specific tuning. 4.2G is a really not that large number. On 26 апр, 06:22, Malcolm Tredinnick <[EMAIL

Re: BigIntegerField support: Ticket #399

2008-04-25 Thread Malcolm Tredinnick
On Fri, 2008-04-25 at 15:12 -0700, Alex Myodov wrote: > I am among the people interested in this patch. > But, looking at the patch concepts from the PostgreSQL perspective, I > wonder whether it will be possible to use it as a base of native > BIGSERIAL support in Django (it is likely that

Re: BigIntegerField support: Ticket #399

2008-04-25 Thread Alex Myodov
I am among the people interested in this patch. But, looking at the patch concepts from the PostgreSQL perspective, I wonder whether it will be possible to use it as a base of native BIGSERIAL support in Django (it is likely that MySQL supports something similar, but sqlite needs

BigIntegerField support: Ticket #399

2008-04-25 Thread Martin Diers
http://code.djangoproject.com/ticket/399 I notice this ticket has been around for a while, and according to the comments, was only waiting a Triage member to look it over. SmileyChris was nice enough to point me over to this group to ask about it. Also, the most resent patch was missing

Re: Ticket #399 (BigIntegerField patch)

2007-12-11 Thread Thomas Güttler
Am Montag, 10. Dezember 2007 05:31 schrieb Aaron Krill: > Hello, > > I recently commented on ticket #399 regarding why the check-in of this > patch should not be delayed, and I would like permission to please > change the status of this ticket back to "Ready for check-in." This > field is very

Ticket #399 (BigIntegerField patch)

2007-12-09 Thread Aaron Krill
Hello, I recently commented on ticket #399 regarding why the check-in of this patch should not be delayed, and I would like permission to please change the status of this ticket back to "Ready for check-in." This field is very important for myself, and as evidenced by the level of communication

Re: BigIntegerField for postgres

2006-12-20 Thread Darren Redmond
Ivan, Thanks for the idea. cheers Darren Ivan Sagalaev wrote: Darren Redmond wrote: I could not find any way to make the Integer Field use the int8 type without changing the django db mappings code, I once hacked it with initial SQL that changed column type after creation: ALTER

Re: BigIntegerField for postgres

2006-12-20 Thread Ivan Sagalaev
Darren Redmond wrote: I could not find any way to make the Integer Field use the int8 type without changing the django db mappings code, I once hacked it with initial SQL that changed column type after creation: ALTER TABLE "table" DROP COLUMN "column"; ALTER TABLE "table" ADD COLUMN

BigIntegerField for postgres

2006-12-20 Thread Darren Redmond
the int8 type without changing the django db mappings code, so I've had to switch to using a CharField which I think is a bit smelly, and would prefer not to do. Is there a BigIntegerField or would it be better to use a FloatField, or is there some other way of achieving this that I am missing

Re: BigIntegerField

2006-08-26 Thread Gopal Narayanan
Felix Ingram wrote: > On 8/22/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > > > I'd like an integer field larger than postgresql's integer (2^31). > > > > Any interest in a patch for BigIntegerField? > > Matt Croydon submitted a patch a while ago: >

Re: BigIntegerField

2006-08-25 Thread Linicks
I have wanted this as a built in "Type" for some time. I usually just do some manual SQL to alter the columbs that I need to be "Big Integers", but it would be nice to have them built in, especially for the default row id created for each table. Hopefully this will make its way into the trunck

Re: BigIntegerField

2006-08-22 Thread Felix Ingram
On 8/22/06, Jeremy Dunck <[EMAIL PROTECTED]> wrote: > > I'd like an integer field larger than postgresql's integer (2^31). > > Any interest in a patch for BigIntegerField? Matt Croydon submitted a patch a while ago: http://code.djangoproject.com/ticket/399 It might n

BigIntegerField

2006-08-22 Thread Jeremy Dunck
I'd like an integer field larger than postgresql's integer (2^31). Any interest in a patch for BigIntegerField? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this g