| 151 | } |
| 152 | |
| 153 | char *ColumnPointTable::getDimension(const Dimension::Detail *d, PointId idx) |
| 154 | { |
| 155 | DimBlockList& dimBlocks = m_blocks[d->order()]; |
| 156 | char *buf = dimBlocks[idx / m_blockPtCnt]; |
| 157 | return buf + (Dimension::size(d->type()) * (idx % m_blockPtCnt)); |
| 158 | } |
| 159 | |
| 160 | |
| 161 | const char *ColumnPointTable::getDimension(const Dimension::Detail *d, |