blob: 4f7041081468238141ae7a4c9132c2d2bf5745ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <util/system/defaults.h>
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
// Maximum number of input tables for operation.
// If greater number of input tables are provided behaviour is undefined
// (it might work ok or it might fail or it might work very slowly).
constexpr size_t MaxInputTableCount = 1000;
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|