From d93403a257a56417f94c7693cb0888eecd7c493c Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 28 Jan 2020 21:06:04 +0100 Subject: [PATCH] Alphabetical order for database names See gh-24443 --- .../core/metadata/CallMetaDataProviderFactory.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProviderFactory.java b/spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProviderFactory.java index e7eb23c104..ff93bfc9a8 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProviderFactory.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProviderFactory.java @@ -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,18 +42,18 @@ public final class CallMetaDataProviderFactory { public static final List supportedDatabaseProductsForProcedures = Arrays.asList( "Apache Derby", "DB2", - "MySQL", + "Informix Dynamic Server", "Microsoft SQL Server", + "MySQL", "Oracle", "PostgreSQL", - "Sybase", - "Informix Dynamic Server" + "Sybase" ); /** List of supported database products for function calls. */ public static final List supportedDatabaseProductsForFunctions = Arrays.asList( - "MySQL", "Microsoft SQL Server", + "MySQL", "Oracle", "PostgreSQL" );