Browse Source

AMBARI-5025. Add unit tests for java upgrade. Additional fix. (mpapirkovskyy)

Myroslav Papirkovskyy 11 years ago
parent
commit
a799ffdbf0

+ 1 - 1
ambari-server/src/main/java/org/apache/ambari/server/orm/DBAccessor.java

@@ -262,7 +262,7 @@ public interface DBAccessor {
     private boolean isNullable;
 
     public DBColumnInfo(String name, Class type, Integer length) {
-      this(name, type, length, null, false);
+      this(name, type, length, null, true);
     }
 
     public DBColumnInfo(String name, Class type, Integer length,