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

18 lines
269 B
C
Raw Normal View History

2010-03-01 16:59:51 +00:00
#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