Skip to content

Commit 5904071

Browse files
committed
fix identifier processing not correct
1 parent 2d21c0e commit 5904071

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.repository/JdbcRepositoryIntegrationTests-gaussdb.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ CREATE TABLE ENTITY_WITH_SEQUENCE
5555
NAME VARCHAR(100)
5656
);
5757

58-
CREATE SEQUENCE "ENTITY_SEQUENCE" START WITH 1 INCREMENT BY 1 NO MAXVALUE;
58+
CREATE SEQUENCE ENTITY_SEQUENCE START WITH 1 INCREMENT BY 1 NO MAXVALUE;

spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/GaussDBDialect.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public class GaussDBDialect extends AbstractDialect {
5252
private static final Set<Class<?>> POSTGRES_SIMPLE_TYPES = Set.of(UUID.class, URL.class, URI.class, InetAddress.class,
5353
Map.class);
5454

55-
private final IdentifierProcessing identifierProcessing = IdentifierProcessing.create(Quoting.ANSI,
56-
LetterCasing.LOWER_CASE);
55+
private final IdentifierProcessing identifierProcessing = IdentifierProcessing.create(Quoting.NONE,
56+
LetterCasing.UPPER_CASE);
5757

5858
private final IdGeneration idGeneration = new IdGeneration() {
5959

0 commit comments

Comments
 (0)