mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
8 lines
242 B
C++
8 lines
242 B
C++
#pragma once
|
|
|
|
/** If the stack is large enough and is near its size, throw an exception.
|
|
* You can call this function in "heavy" functions that may be called recursively
|
|
* to prevent possible stack overflows.
|
|
*/
|
|
void checkStackSize();
|