Re: add column sillyness

From: Jan Wieck <JanWieck(at)Yahoo(dot)com>
To: Eric Soroos <eric-psql(at)soroos(dot)net>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: add column sillyness
Date: 2003-12-09 21:47:00
Message-ID: 3FD642D4.5040006@Yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Eric Soroos wrote:

>>
>> MySQL is CLEARLY SUPERIOR in terms of
>> - usability
>> - see above
>> - performance
>> - uses index for for min()/max()
>> - reliability
>> - no need to use vacuum
>> - no need to dump and restore databases for version upgrade
>> - never screwed up any of my databases
>>
>
> You forgot space saving storage of floating point numbers:

He also forgot that it returns far less error messages since it just
assumes "something" whenever the input is unintelligible or if the
requested feature is not what the programmer should want, speed wise.

Oh, and it is much much faster too. For example numeric data does not
use those horrible expensive string math routines for exact precision,
it has full hardware floating point support instead, so it will actually
use your math co-proc (if you have one). These accounting bureaucrats
really shouldn't worry, at that speed one can create many more results
and one will probably be right someday.

Jan

>
> mysql> create table test(foo int);
> Query OK, 0 rows affected (0.51 sec)
>
> mysql> insert into test (foo) values (1.5);
> Query OK, 1 row affected (0.42 sec)
>
> mysql> select * from test;
> +------+
> | foo |
> +------+
> | 2 |
> +------+
> 1 row in set (0.01 sec)
>
> eric
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 8: explain analyze is your friend

--
#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#================================================== JanWieck(at)Yahoo(dot)com #

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Eric Soroos 2003-12-09 22:25:46 Re: add column sillyness
Previous Message Marc G. Fournier 2003-12-09 21:28:23 Re: add column sillyness