File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 99 *
1010 *
1111 * 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 $
1313 *
1414 *-------------------------------------------------------------------------
1515 */
@@ -462,12 +462,12 @@ parse_XactIsoLevel(char *value)
462462 }
463463
464464
465- if (strcasecmp (value , "SERIALIZABLE " ) == 0 )
465+ if (strcmp (value , "serializable " ) == 0 )
466466 XactIsoLevel = XACT_SERIALIZABLE ;
467- else if (strcasecmp (value , "READ COMMITTED " ) == 0 )
467+ else if (strcmp (value , "read committed " ) == 0 )
468468 XactIsoLevel = XACT_READ_COMMITTED ;
469469 else
470- elog (ERROR , "Bad TRANSACTION ISOLATION LEVEL (%s) " , value );
470+ elog (ERROR , "invalid transaction isolation level: %s " , value );
471471
472472 return TRUE;
473473}
You can’t perform that action at this time.
0 commit comments