mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-27 03:45:11 +00:00
20 lines
288 B
C++
20 lines
288 B
C++
/*
|
|
* Copyright (C) 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "schema/schema_fwd.hh"
|
|
namespace tasks {
|
|
|
|
struct virtual_task_hint {
|
|
// Contains hints for all virtual tasks types.
|
|
std::optional<table_id> table_id;
|
|
};
|
|
|
|
}
|