File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.52 2001/09/06 04:57:28 ishii Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.53 2001/09/19 15:19:12 petere Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
@@ -462,12 +462,12 @@ parse_XactIsoLevel(char *value)
462
462
}
463
463
464
464
465
- if (strcasecmp (value , "SERIALIZABLE " ) == 0 )
465
+ if (strcmp (value , "serializable " ) == 0 )
466
466
XactIsoLevel = XACT_SERIALIZABLE ;
467
- else if (strcasecmp (value , "READ COMMITTED " ) == 0 )
467
+ else if (strcmp (value , "read committed " ) == 0 )
468
468
XactIsoLevel = XACT_READ_COMMITTED ;
469
469
else
470
- elog (ERROR , "Bad TRANSACTION ISOLATION LEVEL (%s) " , value );
470
+ elog (ERROR , "invalid transaction isolation level: %s " , value );
471
471
472
472
return TRUE;
473
473
}
You can’t perform that action at this time.
0 commit comments