devastool / devastool/entity2jooq

CUBRID dialect support

Open
#30 0 comments 0 reactions 0 assignees View on GitHub
enhancement release-1.0.0
Dominant language
Java
Stars
5
Forks
0
PR merge metrics
No merged PRs in 30d

Description

**Blocked by:**
https://github.com/devastool/entity2jooq/issues/27

**Description:**
1) Need to create `CUBRIDTypeMapper` class, that extends from `DialectTypeMapper`, dialect name should be `CUBRID`;
Example:
```java
public class CUBRIDTypeMapper extends DialectTypeMapper {
public CUBRIDTypeMapper() {
super("Postgres", Set.of(...))
}
}
```
2) Need to add new dialect to `RouteTypeMapper` constructor.
Example:
```java
public RouteTypeMapper() {
CUBRIDTypeMapper cubridMapper = new CUBRIDTypeMapper();
dialects.put(cubridMapper.getDialect(), cubridMapper);
}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.