Skip to content

Commit 8c8f370

Browse files
authored
Merge pull request #6 from Cousjava/FISH-449-oracle19c
FISH-449 Bugfix for 548814 (EL not Auto Detecting Oracle 19C)
2 parents 206a0a2 + 377eb2d commit 8c8f370

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

foundation/org.eclipse.persistence.core/resource/org/eclipse/persistence/internal/helper/VendorNameToPlatformMapping.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#*******************************************************************************
2-
# Copyright (c) 1998, 2015 Oracle and/or its affiliates, IBM Corporation. All rights reserved.
2+
# Copyright (c) 1998, 2020 Oracle and/or its affiliates, IBM Corporation. All rights reserved.
33
# This program and the accompanying materials are made available under the
44
# terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
55
# which accompanies this distribution.
@@ -28,6 +28,8 @@
2828
# to platform class entries should be placed before less specific entries. Each
2929
# platform entry must be on its own line, an entry cannot span multiple lines.
3030

31+
(?is)oracle.*19.*=org.eclipse.persistence.platform.database.oracle.Oracle19Platform
32+
(?is)oracle.*18.*=org.eclipse.persistence.platform.database.oracle.Oracle18Platform
3133
(?is)oracle.*12.*=org.eclipse.persistence.platform.database.oracle.Oracle12Platform
3234
(?is)oracle.*11.*=org.eclipse.persistence.platform.database.oracle.Oracle11Platform
3335
(?is)oracle.*10.*=org.eclipse.persistence.platform.database.oracle.Oracle10Platform
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
3+
* This program and the accompanying materials are made available under the
4+
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
5+
* which accompanies this distribution.
6+
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
* and the Eclipse Distribution License is available at
8+
* http://www.eclipse.org/org/documents/edl-v10.php.
9+
*
10+
* Contributors:
11+
* Oracle - initial API and implementation from Oracle TopLink
12+
******************************************************************************/
13+
package org.eclipse.persistence.platform.database.oracle;
14+
15+
/**
16+
* <p><b>Purpose:</b>
17+
* Supports usage of certain Oracle JDBC specific APIs for the Oracle 12 database.
18+
*/
19+
public class Oracle18Platform extends Oracle12Platform {
20+
public Oracle18Platform() {
21+
super();
22+
}
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*******************************************************************************
2+
* Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
3+
* This program and the accompanying materials are made available under the
4+
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
5+
* which accompanies this distribution.
6+
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
* and the Eclipse Distribution License is available at
8+
* http://www.eclipse.org/org/documents/edl-v10.php.
9+
*
10+
* Contributors:
11+
* Oracle - initial API and implementation from Oracle TopLink
12+
******************************************************************************/
13+
package org.eclipse.persistence.platform.database.oracle;
14+
15+
/**
16+
* <p><b>Purpose:</b>
17+
* Supports usage of certain Oracle JDBC specific APIs for the Oracle 12 database.
18+
*/
19+
public class Oracle19Platform extends Oracle18Platform {
20+
public Oracle19Platform() {
21+
super();
22+
}
23+
}

0 commit comments

Comments
 (0)