Re: PostgreSQL vs mySQL, any performance difference for

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Wes Williams <wes_williams(at)fcbonline(dot)net>
Cc: 'Jan' <janoleolsen(at)hotmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: PostgreSQL vs mySQL, any performance difference for
Date: 2005-10-25 19:24:11
Message-ID: 1130268250.15546.173.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Cool. Does it still error out after issueing:

set sql_mode='MYSQL323';

???

Just wondering if bounds checking is still optional but is now op-out
instead of opt-in, or if it's something that you can no longer turn off.

The whole idea of correct behaviour being an option is pretty bad, but
hopefully at least the defaults are for proper behaviour, or are heading
that way.

On Tue, 2005-10-25 at 13:52, Wes Williams wrote:
> For what it may be worth, executing the same commands into MySQL
> 5.0.15-nt-max (Win XP Pro) the following it received:
>
> mysql> create table test (i1 int);
> Query OK, 0 rows affected (0.41 sec)
>
> mysql> insert into test values (123913284723498723423);
> ERROR 1264 (22003): Out of range value adjusted for column (i1) at row 1
>
> mysql> select * from test;
> Empty set (0.03 sec)
>
>
> Finally an improvement!
>
> ============================================================
> -----Original Message-----
> mysql> create table test (i1 int);
> Query OK, 0 rows affected (0.07 sec)
>
> mysql> insert into test values (123913284723498723423);
> Query OK, 1 row affected, 2 warnings (0.07 sec)
>
> mysql> select * from test;
> +------------+
> | i1 |
> +------------+
> | 2147483647 |
> +------------+
> 1 row in set (0.00 sec)
>
> And other fun things.
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Wes Williams 2005-10-25 19:34:10 Re: PostgreSQL vs mySQL, any performance difference for
Previous Message Marc G. Fournier 2005-10-25 19:19:21 Re: [ANNOUNCE] PostgreSQL 8.1 Beta 4