You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
663 B
21 lines
663 B
package com.fr.plugin.migration.pgsql; |
|
|
|
import com.fr.data.core.db.dialect.PostgreSQLDialect; |
|
import com.fr.data.core.db.dialect.base.DialectKeyConstants; |
|
import com.fr.data.core.db.dialect.base.key.hibernate.HibernateDialectClassExecutor; |
|
|
|
|
|
/** |
|
* 我们自己的方言框架(非hibernate)的实现,内部反射调用hibernate方言 |
|
* |
|
* @author lidongy |
|
* @version 10.0 |
|
* Created by lidongy on 2020/7/31 |
|
*/ |
|
public class PGSQLDialect extends PostgreSQLDialect { |
|
public PGSQLDialect() { |
|
super(); |
|
putExecutor(DialectKeyConstants.HIBERNATE_DIALECT_CLASS_KEY, new HibernateDialectClassExecutor(FRPGSQLDialect.class.getName())); |
|
} |
|
} |
|
|
|
|