Fix 32bit build

This commit is contained in:
proller 2018-01-12 15:50:59 +03:00
parent ebcf462fd6
commit 1c06c0f810
2 changed files with 6 additions and 3 deletions

View File

@ -141,9 +141,9 @@ void StorageSystemPartsColumns::processNextStorage(MutableColumns & columns, con
columns[j++]->insertDefault();
}
columns[j++]->insert(part->getColumnCompressedSize(column.name));
columns[j++]->insert(part->getColumnUncompressedSize(column.name));
columns[j++]->insert(part->getColumnMrkSize(column.name));
columns[j++]->insert(static_cast<UInt64>(part->getColumnCompressedSize(column.name)));
columns[j++]->insert(static_cast<UInt64>(part->getColumnUncompressedSize(column.name)));
columns[j++]->insert(static_cast<UInt64>(part->getColumnMrkSize(column.name)));
if (has_state_column)
columns[j++]->insert(part->stateString());

3
debian/pbuilder-hooks/B00ccache-stat vendored Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
ccache --show-stats