File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
src/main/java/org/apache/ibatis/session Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11/**
2- * Copyright 2009-2018 the original author or authors.
2+ * Copyright 2009-2020 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -25,7 +25,14 @@ public enum TransactionIsolationLevel {
2525 READ_COMMITTED (Connection .TRANSACTION_READ_COMMITTED ),
2626 READ_UNCOMMITTED (Connection .TRANSACTION_READ_UNCOMMITTED ),
2727 REPEATABLE_READ (Connection .TRANSACTION_REPEATABLE_READ ),
28- SERIALIZABLE (Connection .TRANSACTION_SERIALIZABLE );
28+ SERIALIZABLE (Connection .TRANSACTION_SERIALIZABLE ),
29+ /**
30+ * A non-standard isolation level for Microsoft SQL Server.
31+ * Defined in the SQL Server JDBC driver {@link com.microsoft.sqlserver.jdbc.ISQLServerConnection}
32+ *
33+ * @since 3.5.6
34+ */
35+ SQL_SERVER_SNAPSHOT (0x1000 );
2936
3037 private final int level ;
3138
You can’t perform that action at this time.
0 commit comments