2011-10-30 05:19:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/IParserBase.h>
|
2011-10-30 05:19:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-05-27 17:29:55 +00:00
|
|
|
/** Cases:
|
2011-10-30 05:19:41 +00:00
|
|
|
*
|
2017-05-27 17:29:55 +00:00
|
|
|
* Normal case:
|
2012-12-11 20:32:08 +00:00
|
|
|
* INSERT INTO [db.]table (c1, c2, c3) VALUES (v11, v12, v13), (v21, v22, v23), ...
|
|
|
|
* INSERT INTO [db.]table VALUES (v11, v12, v13), (v21, v22, v23), ...
|
2011-10-30 05:19:41 +00:00
|
|
|
*
|
2017-05-27 17:29:55 +00:00
|
|
|
* Insert of data in an arbitrary format.
|
|
|
|
* The data itself comes after LF(line feed), if it exists, or after all the whitespace characters, otherwise.
|
2012-12-11 20:32:08 +00:00
|
|
|
* INSERT INTO [db.]table (c1, c2, c3) FORMAT format \n ...
|
|
|
|
* INSERT INTO [db.]table FORMAT format \n ...
|
2011-10-30 05:19:41 +00:00
|
|
|
*
|
2020-04-25 11:33:47 +00:00
|
|
|
* Insert the result of the SELECT or WATCH query.
|
|
|
|
* INSERT INTO [db.]table (c1, c2, c3) SELECT | WATCH ...
|
|
|
|
* INSERT INTO [db.]table SELECT | WATCH ...
|
2011-10-30 05:19:41 +00:00
|
|
|
*/
|
|
|
|
class ParserInsertQuery : public IParserBase
|
|
|
|
{
|
2017-07-10 03:41:02 +00:00
|
|
|
private:
|
|
|
|
const char * end;
|
2017-07-12 01:49:20 +00:00
|
|
|
|
|
|
|
const char * getName() const override { return "INSERT query"; }
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
|
|
public:
|
2019-08-03 11:02:40 +00:00
|
|
|
ParserInsertQuery(const char * end_) : end(end_) {}
|
2011-10-30 05:19:41 +00:00
|
|
|
};
|
|
|
|
|
2020-09-03 17:51:16 +00:00
|
|
|
/** Insert accepts an identifier and an asterisk with variants.
|
|
|
|
*/
|
|
|
|
class ParserInsertElement : public IParserBase
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
const char * getName() const override { return "insert element"; }
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
|
|
};
|
|
|
|
|
2011-10-30 05:19:41 +00:00
|
|
|
}
|