
| Key: |
HHH-2300
|
| Type: |
Patch
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Thomas Mueller
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
File Attachments:
|
1.
H2Dialect.java (14 kB)
|
|
Environment:
|
H2 database engine
|
|
|
Unfortunately, the column name of an information-schema table changed in the H2 database. Here is a new version of the dialect.
|
|
Description
|
Unfortunately, the column name of an information-schema table changed in the H2 database. Here is a new version of the dialect. |
Show » |
|
Two other differences in here though:
registerColumnType(Types.BIT, "bit");
registerColumnType(Types.CHAR, "char($l)");
was before:
registerColumnType(Types.BIT, "boolean");
registerColumnType(Types.CHAR, "varchar($l)");
any reasoning for this ?