| 901 | } |
| 902 | |
| 903 | void DsqlBatch::DataCache::align(ULONG alignment) |
| 904 | { |
| 905 | ULONG a = getSize() % alignment; |
| 906 | if (a) |
| 907 | { |
| 908 | fb_assert(alignment <= sizeof(SINT64)); |
| 909 | SINT64 zero = 0; |
| 910 | put(&zero, alignment - a); |
| 911 | } |
| 912 | } |
| 913 | |
| 914 | void DsqlBatch::DataCache::done() |
| 915 | { |
no test coverage detected