mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
18 lines
351 B
C++
18 lines
351 B
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
namespace DB
|
|
{
|
|
struct Token;
|
|
std::ostream & operator<<(std::ostream & stream, const Token & what);
|
|
|
|
struct Expected;
|
|
std::ostream & operator<<(std::ostream & stream, const Expected & what);
|
|
|
|
class IAST;
|
|
std::ostream & operator<<(std::ostream & stream, const IAST & what);
|
|
|
|
}
|
|
|
|
#include <Core/iostream_debug_helpers.h>
|