2017-01-04 11:23:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/IAST.h>
|
2017-01-04 11:23:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** Something like t.*
|
|
|
|
* It will have qualifier as its child ASTIdentifier.
|
2020-08-29 05:33:46 +00:00
|
|
|
* Optional transformers can be attached to further manipulate these expanded columns.
|
2017-01-04 11:23:27 +00:00
|
|
|
*/
|
|
|
|
class ASTQualifiedAsterisk : public IAST
|
|
|
|
{
|
|
|
|
public:
|
2018-12-07 12:34:40 +00:00
|
|
|
String getID(char) const override { return "QualifiedAsterisk"; }
|
2018-05-17 13:33:28 +00:00
|
|
|
ASTPtr clone() const override
|
|
|
|
{
|
|
|
|
auto clone = std::make_shared<ASTQualifiedAsterisk>(*this);
|
|
|
|
clone->cloneChildren();
|
Get rid of useless std::move to get NRVO
http://eel.is/c++draft/class.copy.elision#:constructor,copy,elision
Some quote:
> Speaking of RVO, return std::move(w); prohibits it. It means "use move constructor or fail to compile", whereas return w; means "use RVO, and if you can't, use move constructor, and if you can't, use copy constructor, and if you can't, fail to compile."
There is one exception to this rule:
```cpp
Block FilterBlockInputStream::removeFilterIfNeed(Block && block)
{
if (block && remove_filter)
block.erase(static_cast<size_t>(filter_column));
return std::move(block);
}
```
because references are not eligible for NRVO, which is another rule "always move rvalue references and forward universal references" that takes precedence.
2018-08-27 14:04:22 +00:00
|
|
|
return clone;
|
2018-05-17 13:33:28 +00:00
|
|
|
}
|
2018-06-27 16:34:11 +00:00
|
|
|
void appendColumnName(WriteBuffer & ostr) const override;
|
2017-01-04 11:23:27 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|