You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consistent incrementer arrangement for PostgreSQL, DB2 and SAP HANA
Includes related polishing in core.metadata and datasource.embedded and a revision of the corresponding database definitions in sql-error-codes.
Issue: SPR-16558
Copy file name to clipboardExpand all lines: spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/AbstractEmbeddedDatabaseConfigurer.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
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.
@@ -24,7 +24,8 @@
24
24
importorg.apache.commons.logging.LogFactory;
25
25
26
26
/**
27
-
* Base class for {@link EmbeddedDatabaseConfigurer} implementations providing common shutdown behavior.
27
+
* Base class for {@link EmbeddedDatabaseConfigurer} implementations
28
+
* providing common shutdown behavior through a "SHUTDOWN" statement.
Copy file name to clipboardExpand all lines: spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/DerbyEmbeddedDatabaseConfigurer.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
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.
@@ -26,7 +26,8 @@
26
26
importorg.springframework.lang.Nullable;
27
27
28
28
/**
29
-
* {@link EmbeddedDatabaseConfigurer} for the Apache Derby database 10.6+.
29
+
* {@link EmbeddedDatabaseConfigurer} for the Apache Derby database.
30
+
*
30
31
* <p>Call {@link #getInstance()} to get the singleton instance of this class.
31
32
*
32
33
* @author Oliver Gierke
@@ -43,10 +44,9 @@ final class DerbyEmbeddedDatabaseConfigurer implements EmbeddedDatabaseConfigure
43
44
44
45
/**
45
46
* Get the singleton {@link DerbyEmbeddedDatabaseConfigurer} instance.
46
-
* @return the configurer
47
-
* @throws ClassNotFoundException if Derby is not on the classpath
Copy file name to clipboardExpand all lines: spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/EmbeddedDatabaseConfigurerFactory.java
+11-10
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2014 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.
@@ -19,8 +19,8 @@
19
19
importorg.springframework.util.Assert;
20
20
21
21
/**
22
-
* Maps well-known {@linkplain EmbeddedDatabaseType embedded database types} to
Copy file name to clipboardExpand all lines: spring-jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/HsqlEmbeddedDatabaseConfigurer.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
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.
@@ -23,6 +23,7 @@
23
23
24
24
/**
25
25
* {@link EmbeddedDatabaseConfigurer} for an HSQL embedded database instance.
26
+
*
26
27
* <p>Call {@link #getInstance()} to get the singleton instance of this class.
27
28
*
28
29
* @author Keith Donald
@@ -39,7 +40,7 @@ final class HsqlEmbeddedDatabaseConfigurer extends AbstractEmbeddedDatabaseConfi
39
40
40
41
/**
41
42
* Get the singleton {@link HsqlEmbeddedDatabaseConfigurer} instance.
42
-
* @return the configurer
43
+
* @return the configurer instance
43
44
* @throws ClassNotFoundException if HSQL is not on the classpath
0 commit comments