Add Informix to supported database products for procedure calls

Closes gh-24443
This commit is contained in:
Juergen Hoeller
2020-01-28 21:20:46 +01:00
parent 1b50ca6bd3
commit ff385aaf7b

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -42,8 +42,9 @@ public final class CallMetaDataProviderFactory {
public static final List<String> supportedDatabaseProductsForProcedures = Arrays.asList(
"Apache Derby",
"DB2",
"MySQL",
"Informix Dynamic Server",
"Microsoft SQL Server",
"MySQL",
"Oracle",
"PostgreSQL",
"Sybase"
@@ -51,8 +52,8 @@ public final class CallMetaDataProviderFactory {
/** List of supported database products for function calls. */
public static final List<String> supportedDatabaseProductsForFunctions = Arrays.asList(
"MySQL",
"Microsoft SQL Server",
"MySQL",
"Oracle",
"PostgreSQL"
);