-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbigtable_scanner.cpp
More file actions
60 lines (53 loc) · 1.61 KB
/
bigtable_scanner.cpp
File metadata and controls
60 lines (53 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
* Copyright (C) 2025 EloqData Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the following license:
* 1. GNU General Public License as published by the Free Software
* Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License V2
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "bigtable_scanner.h"
namespace EloqDS
{
template <bool Direction>
void HashPartitionBigTableScanner<Direction>::Current(
txservice::TxKey &key,
const txservice::TxRecord *&rec,
uint64_t &version_ts,
bool &deleted_)
{
}
template <bool Direction>
bool HashPartitionBigTableScanner<Direction>::MoveNext()
{
return false;
}
template <bool Direction>
void HashPartitionBigTableScanner<Direction>::End()
{
}
template class HashPartitionBigTableScanner<true>;
template class HashPartitionBigTableScanner<false>;
void RangePartitionBigTableScanner::Current(txservice::TxKey &key,
const txservice::TxRecord *&rec,
uint64_t &version_ts,
bool &deleted)
{
}
bool RangePartitionBigTableScanner::MoveNext()
{
return false;
}
void RangePartitionBigTableScanner::End()
{
}
} // namespace EloqDS