102103104105106107108
TextCache(Table table, String name) { super(table.database, name); this.table = table; uncommittedCache = new ObjectCacheHashMap(5); }
100101102103104105106
TextCache(Table table, String name) throws HsqlException { super(table.database, name); this.table = table; uncommittedCache = new ObjectCacheHashMap(5); }
7778798081828384
dataFileCache = dfc; capacity = dfc.capacity(); bytesCapacity = dfc.bytesCapacity(); rowComparator = new CachedObjectComparator(); rowTable = new CachedObject[capacity]; cacheMap = new ObjectCacheHashMap(capacity); cacheBytesLength = 0; }
101102103104105106107