mirror of
https://github.com/postgres/postgres.git
synced 2026-03-26 20:34:52 -04:00
Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistent
with SET TRANSACTION_ISOLATION, either.
This commit is contained in:
parent
cfa6999d3b
commit
ffcb1491af
1 changed files with 3 additions and 3 deletions
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue