ClickHouse/dbms/include/DB/Common/EscapeManipulators.h

18 lines
275 B
C
Raw Normal View History

2010-03-01 16:59:51 +00:00
#ifndef DBMS_COMMON_ESCAPE_MANIPULATORS_H
#define DBMS_COMMON_ESCAPE_MANIPULATORS_H
#include <strconvert/escape_manip.h>
#include <strconvert/unescape_manip.h>
namespace DB
{
typedef strconvert::escape_file escape;
typedef strconvert::unescape_file unescape;
}
#endif