|
Trying to export our schema on a SQL Server 2014 instance, we have noticed that the Table.java, on line 190, do not consider the correct default value for a boolean column, which in SQL Server unfortunately is not (true,false) but (1,0).
This is important for us while dropping and recreating schemas for tests suite.
|