mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
18 lines
269 B
C++
18 lines
269 B
C++
#ifndef DBMS_COMMON_QUOTE_MANIPULATORS_H
|
|
#define DBMS_COMMON_QUOTE_MANIPULATORS_H
|
|
|
|
#include <strconvert/escape_manip.h>
|
|
#include <strconvert/unescape_manip.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef strconvert::quote_fast quote;
|
|
typedef strconvert::unquote_fast unquote;
|
|
|
|
}
|
|
|
|
|
|
#endif
|