mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Fix 32bit build
This commit is contained in:
parent
ebcf462fd6
commit
1c06c0f810
@ -141,9 +141,9 @@ void StorageSystemPartsColumns::processNextStorage(MutableColumns & columns, con
|
|||||||
columns[j++]->insertDefault();
|
columns[j++]->insertDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
columns[j++]->insert(part->getColumnCompressedSize(column.name));
|
columns[j++]->insert(static_cast<UInt64>(part->getColumnCompressedSize(column.name)));
|
||||||
columns[j++]->insert(part->getColumnUncompressedSize(column.name));
|
columns[j++]->insert(static_cast<UInt64>(part->getColumnUncompressedSize(column.name)));
|
||||||
columns[j++]->insert(part->getColumnMrkSize(column.name));
|
columns[j++]->insert(static_cast<UInt64>(part->getColumnMrkSize(column.name)));
|
||||||
|
|
||||||
if (has_state_column)
|
if (has_state_column)
|
||||||
columns[j++]->insert(part->stateString());
|
columns[j++]->insert(part->stateString());
|
||||||
|
3
debian/pbuilder-hooks/B00ccache-stat
vendored
Executable file
3
debian/pbuilder-hooks/B00ccache-stat
vendored
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
ccache --show-stats
|
Loading…
Reference in New Issue
Block a user