mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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();
|