Commit ffcb1491 authored by Tom Lane's avatar Tom Lane

Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistent

with SET TRANSACTION_ISOLATION, either.
parent cfa6999d
......@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.80 2003/07/15 19:19:56 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.81 2003/07/15 19:34:43 tgl Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -629,9 +629,9 @@ const char *
show_XactIsoLevel(void)
{
if (XactIsoLevel == XACT_SERIALIZABLE)
return "SERIALIZABLE";
return "serializable";
else
return "READ COMMITTED";
return "read committed";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment