mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
HHH-3604 add MySQL engine to table generators
This commit is contained in:
parent
1811b48f72
commit
e1366904fa
@ -129,7 +129,8 @@ public String[] sqlCreateStrings(Dialect dialect) throws HibernateException {
|
||||
.append( valueColumnName )
|
||||
.append( ' ' )
|
||||
.append( dialect.getTypeName( Types.INTEGER ) )
|
||||
.append( " ) " )
|
||||
.append( " )" )
|
||||
.append( dialect.getTableTypeString() )
|
||||
.toString()
|
||||
};
|
||||
}
|
||||
|
@ -239,7 +239,8 @@ private ResultSet executeQuery(PreparedStatement ps, SessionEventListenerManager
|
||||
|
||||
public String[] sqlCreateStrings(Dialect dialect) throws HibernateException {
|
||||
return new String[] {
|
||||
dialect.getCreateTableString() + " " + tableName + " ( " + columnName + " " + dialect.getTypeName(Types.INTEGER) + " )",
|
||||
dialect.getCreateTableString() + " " + tableName + " ( "
|
||||
+ columnName + " " + dialect.getTypeName(Types.INTEGER) + " )" + dialect.getTableTypeString(),
|
||||
"insert into " + tableName + " values ( 0 )"
|
||||
};
|
||||
}
|
||||
|
@ -657,7 +657,7 @@ public String[] sqlCreateStrings(Dialect dialect) throws HibernateException {
|
||||
dialect.getCreateTableString() + ' ' + tableName + " ( "
|
||||
+ segmentColumnName + ' ' + dialect.getTypeName( Types.VARCHAR, segmentValueLength, 0, 0 ) + " not null "
|
||||
+ ", " + valueColumnName + ' ' + dialect.getTypeName( Types.BIGINT )
|
||||
+ ", primary key ( " + segmentColumnName + " ) ) "
|
||||
+ ", primary key ( " + segmentColumnName + " ) )" + dialect.getTableTypeString()
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user