Example usage for org.hibernate.tool.hbm2ddl ColumnMetadata getColumnSize

List of usage examples for org.hibernate.tool.hbm2ddl ColumnMetadata getColumnSize

Introduction

In this page you can find the example usage for org.hibernate.tool.hbm2ddl ColumnMetadata getColumnSize.

Prototype

public int getColumnSize() 

Source Link

Usage

From source file:com.amalto.core.storage.hibernate.mapping.MDMTableUtils.java

License:Open Source License

public static boolean isIncreaseVarcharColumnLength(Column newColumn, ColumnMetadata oldColumnInfo,
        Dialect dialect) {//from  w ww.  ja  v  a 2  s . c  om
    return newColumn.getLength() > oldColumnInfo.getColumnSize();
}