ClickHouse/dbms/include/DB/Parsers/ASTOrderByElement.h

35 lines
948 B
C
Raw Normal View History

2011-09-04 05:14:52 +00:00
#pragma once
#include <DB/Parsers/IAST.h>
2013-05-28 16:56:05 +00:00
#include <DB/Common/Collator.h>
2011-09-04 05:14:52 +00:00
namespace DB
{
using Poco::SharedPtr;
/** Элемент выражения, после которого стоит ASC или DESC
*/
class ASTOrderByElement : public IAST
{
public:
int direction; /// 1, если ASC, -1, если DESC
2013-05-28 16:56:05 +00:00
/** Collator для locale-specific сортировки строк.
* Если NULL, то производится сортировка по байтам.
*/
Poco::SharedPtr<Collator> collator;
2011-09-04 05:14:52 +00:00
ASTOrderByElement() {}
2013-05-28 16:56:05 +00:00
ASTOrderByElement(StringRange range_, int direction_, const Poco::SharedPtr<Collator> & collator_ = NULL)
: IAST(range_), direction(direction_), collator(collator_) {}
2011-09-04 05:14:52 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2012-12-27 16:23:12 +00:00
String getID() const { return "OrderByElement"; }
2011-12-12 06:15:34 +00:00
ASTPtr clone() const { return new ASTOrderByElement(*this); }
2011-09-04 05:14:52 +00:00
};
}