File tree 1 file changed +8
-1
lines changed
spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2017 the original author or authors.
2
+ * Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
37
37
* This class can be extended to provide database specific behavior.
38
38
*
39
39
* @author Thomas Risberg
40
+ * @author Juergen Hoeller
40
41
* @since 2.5
41
42
*/
42
43
public class GenericCallMetaDataProvider implements CallMetaDataProvider {
@@ -343,6 +344,12 @@ else if (found.isEmpty()) {
343
344
"' - package name should be specified separately using '.withCatalogName(\" " +
344
345
packageName + "\" )'" );
345
346
}
347
+ else if ("Oracle" .equals (databaseMetaData .getDatabaseProductName ())) {
348
+ if (logger .isDebugEnabled ()) {
349
+ logger .debug ("Oracle JDBC driver did not return procedure/function/signature for '" +
350
+ metaDataProcedureName + "' - assuming a non-exposed synonym" );
351
+ }
352
+ }
346
353
else {
347
354
throw new InvalidDataAccessApiUsageException (
348
355
"Unable to determine the correct call signature - no " +
You can’t perform that action at this time.
0 commit comments