1//===----------------------------------------------------------------------===//
2// DuckDB
3//
4// duckdb/transaction/delete_info.hpp
5//
6//
7//===----------------------------------------------------------------------===//
8
9#pragma once
10
11#include "duckdb/common/constants.hpp"
12
13namespace duckdb {
14class ChunkVectorInfo;
15class DataTable;
16
17struct DeleteInfo {
18 DataTable *table;
19 ChunkVectorInfo *vinfo;
20 idx_t count;
21 idx_t base_row;
22 row_t rows[1];
23};
24
25} // namespace duckdb
26