Re: PostgreSQL not ACID compliant? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: PostgreSQL not ACID compliant?
Date
Msg-id 11929.1064014114@sss.pgh.pa.us
Whole thread Raw
In response to PostgreSQL not ACID compliant?  ("Joshua D. Drake" <jd@commandprompt.com>)
Responses Re: PostgreSQL not ACID compliant?  ("Joshua D. Drake" <jd@commandprompt.com>)
List pgsql-hackers
"Joshua D. Drake" <jd@commandprompt.com> writes:
>   I just read a rather disturbing post....

>   PostgreSQL does not support read uncommited and repeatable read 
> isolation levels? If that is so... then PostgreSQL is NOT ACID compliant?

Why do you find that disturbing?  Read uncommitted is the very
definition of "not ACID".

>   What is the real deal on this?

We don't support read uncommitted because it's not ACID, and we don't
support repeatable read because it doesn't map to any useful behavior in
an MVCC model.  It is legal to omit support for these isolation levels
per spec.  (I think the spec actually wants implementations to silently
treat them as the next higher isolation level rather than complaining,
but that seems to me like it'd just add confusion.)

Anyone who tries to paint this as a big deal is just trolling.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: semtimedop instead of setitimer/semop/setitimer
Next
From: "Joshua D. Drake"
Date:
Subject: Re: PostgreSQL not ACID compliant?