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

Commit 5663fe5

Browse files
committed
Fix compilation error.
1 parent f5e8db1 commit 5663fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/planner/insert_plan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class InsertPlan : public AbstractPlan {
7373
* Clear the parameter values of the current insert. The plan may be
7474
* cached in the statement / plan cache and may be reused.
7575
*/
76-
void ClearParameterValues() { values_.clear(); }
76+
void ClearParameterValues() override { values_.clear(); }
7777

7878
storage::DataTable *GetTable() const { return target_table_; }
7979

0 commit comments

Comments
 (0)