Skip to content

Commit ff385aa

Browse files
committed
Add Informix to supported database products for procedure calls
Closes gh-24443
1 parent 1b50ca6 commit ff385aa

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProviderFactory.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-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.
@@ -42,17 +42,18 @@ public final class CallMetaDataProviderFactory {
4242
public static final List<String> supportedDatabaseProductsForProcedures = Arrays.asList(
4343
"Apache Derby",
4444
"DB2",
45-
"MySQL",
45+
"Informix Dynamic Server",
4646
"Microsoft SQL Server",
47+
"MySQL",
4748
"Oracle",
4849
"PostgreSQL",
4950
"Sybase"
5051
);
5152

5253
/** List of supported database products for function calls. */
5354
public static final List<String> supportedDatabaseProductsForFunctions = Arrays.asList(
54-
"MySQL",
5555
"Microsoft SQL Server",
56+
"MySQL",
5657
"Oracle",
5758
"PostgreSQL"
5859
);

0 commit comments

Comments
 (0)