1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

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

with SET TRANSACTION_ISOLATION, either.
This commit is contained in:
Tom Lane
2003-07-15 19:34:43 +00:00
parent cfa6999d3b
commit ffcb1491af

View File

@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * 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) show_XactIsoLevel(void)
{ {
if (XactIsoLevel == XACT_SERIALIZABLE) if (XactIsoLevel == XACT_SERIALIZABLE)
return "SERIALIZABLE"; return "serializable";
else else
return "READ COMMITTED"; return "read committed";
} }