-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'integration' into InstallErrorsAndMessages
- Loading branch information
Showing
11 changed files
with
460 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...ibm.ws.kernel.versionless.fat/jmv.options → ...ibm.ws.kernel.versionless.fat/jvm.options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
-Dcom.ibm.ws.beta.edition=true | ||
|
152 changes: 77 additions & 75 deletions
152
...s.transaction.hadb_fat.derby.1/test-applications/transaction/src/web/FailoverServlet.java
Large diffs are not rendered by default.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
...transaction.hadb_fat.derby.1/test-bundles/ifxlib/src/com/informix/jdbcx/IfxConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 IBM Corporation and others. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* IBM Corporation - initial API and implementation | ||
*******************************************************************************/ | ||
package com.informix.jdbcx; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
public class IfxConstants { | ||
public enum TestType { | ||
STARTUP, | ||
RUNTIME, | ||
DUPLICATE_RESTART, | ||
DUPLICATE_RUNTIME, | ||
HALT, | ||
CONNECT, | ||
LEASE; | ||
|
||
private static final Map<Integer, TestType> _map = new HashMap<Integer, TestType>(); | ||
static { | ||
for (TestType testType : TestType.values()) { | ||
_map.put(testType.ordinal(), testType); | ||
} | ||
} | ||
|
||
public static TestType from(int ordinal) { | ||
return _map.get(ordinal); | ||
} | ||
}; | ||
} |
241 changes: 127 additions & 114 deletions
241
...tion.hadb_fat.derby.1/test-bundles/ifxlib/src/com/informix/jdbcx/IfxPooledConnection.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.