Skip to content

Commit a1ed51e

Browse files
committed
Fix typo in sequence selection.
See #2003 Original pull request: #2005
1 parent eb25cc3 commit a1ed51e

File tree

1 file changed

+2
-2
lines changed
  • spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect

1 file changed

+2
-2
lines changed

Diff for: spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/IdGeneration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ default boolean driverRequiresKeyColumnNames() {
6363
/**
6464
* Provides for a given id {@link SqlIdentifier} the String that is to be used for registering interest in the
6565
* generated value of that column.
66-
*
66+
*
6767
* @param id {@link SqlIdentifier} representing a column for which a generated value is to be obtained.
6868
* @return a String representing that column in the way expected by the JDBC driver.
6969
* @since 3.3
@@ -107,6 +107,6 @@ default String createSequenceQuery(SqlIdentifier sequenceName) {
107107
}
108108

109109
static String createSequenceQuery(String nameString) {
110-
return "SELECT NEXT VALUE FOR" + nameString;
110+
return "SELECT NEXT VALUE FOR " + nameString;
111111
}
112112
}

0 commit comments

Comments
 (0)