From: James Ahlborn Date: Thu, 10 Oct 2013 01:42:06 +0000 (+0000) Subject: actually cache prop columns X-Git-Tag: jackcess-1.2.14.3~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e4fd2e06bf0cc1aeba0ddf1b0fe4cb123046986b;p=jackcess.git actually cache prop columns git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/branches/jackcess-1.2.14@815 f203690c-595d-4dc9-a70b-905162fa7fd2 --- diff --git a/src/java/com/healthmarketscience/jackcess/PropertyMaps.java b/src/java/com/healthmarketscience/jackcess/PropertyMaps.java index 3ffd908..19e9c3a 100644 --- a/src/java/com/healthmarketscience/jackcess/PropertyMaps.java +++ b/src/java/com/healthmarketscience/jackcess/PropertyMaps.java @@ -284,6 +284,8 @@ public class PropertyMaps implements Iterable if(col.isVariableLength()) { col.setLength((short)colType.getMaxSize()); } + + _columns.put(dataType, col); } return col;