mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
8ef51bf19b
* Fix missing includes * ComplexKeyCacheDictionary: Move includes to .cpp * Fixing PerformanceTest: table_exists condition, move getMemoryAmount function to file. Add more debug helpers * Multiplatform memory size getter * Requested changes * Requested changes * Requested changes * fix * Requested changes
10 lines
159 B
C++
10 lines
159 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
/**
|
|
* Returns the size of physical memory (RAM) in bytes.
|
|
* Returns 0 on unsupported platform
|
|
*/
|
|
uint64_t getMemoryAmount();
|