Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 3576264

Browse files
committed
This must be unintentional
1 parent 8c656b7 commit 3576264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/parser/insert_statement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace parser {
2424
* @brief Represents "INSERT INTO students VALUES ('Max', 1112233,
2525
* 'Musterhausen', 2.3)"
2626
*/
27-
class InsertStatement : SQLStatement {
27+
class InsertStatement : public SQLStatement {
2828
public:
2929
InsertStatement(InsertType type)
3030
: SQLStatement(StatementType::INSERT), type(type), select(nullptr) {}

0 commit comments

Comments
 (0)