added returning token for insert query
This commit is contained in:
@@ -166,6 +166,7 @@ public:
|
||||
[[nodiscard]] const std::string& primary_key() const;
|
||||
[[nodiscard]] const std::string& references() const;
|
||||
[[nodiscard]] const std::string& remove() const;
|
||||
[[nodiscard]] const std::string& returning() const;
|
||||
[[nodiscard]] const std::string& rollback() const;
|
||||
[[nodiscard]] const std::string& schema() const;
|
||||
[[nodiscard]] const std::string& select() const;
|
||||
@@ -236,6 +237,7 @@ private:
|
||||
{dialect_token::PrimaryKey, "PRIMARY KEY"},
|
||||
{dialect_token::References, "REFERENCES"},
|
||||
{dialect_token::Remove, "DELETE"},
|
||||
{dialect_token::Returning, "RETURNING"},
|
||||
{dialect_token::Rollback, "ROLLBACK TRANSACTION"},
|
||||
{dialect_token::Schema, "SCHEMA"},
|
||||
{dialect_token::Select, "SELECT"},
|
||||
|
||||
Reference in New Issue
Block a user