dbms: Server: Renaming [#METR-18844]

This commit is contained in:
Alexey Arno 2016-06-30 19:56:13 +03:00
parent d537ad38c8
commit 6c3d36d616

View File

@ -264,8 +264,8 @@ private:
PatternAction(const PatternActionType type, const std::uint32_t extra = 0) : type{type}, extra{extra} {}
};
static constexpr size_t bytes_in_arena = 64;
using PatternActions = PODArray<PatternAction, bytes_in_arena, AllocatorWithStackMemory<Allocator<false>, bytes_in_arena>>;
static constexpr size_t bytes_on_stack = 64;
using PatternActions = PODArray<PatternAction, bytes_on_stack, AllocatorWithStackMemory<Allocator<false>, bytes_on_stack>>;
void parsePattern()