We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 989c980 commit 605c6d2Copy full SHA for 605c6d2
store/postgres/src/block_range.rs
@@ -165,13 +165,6 @@ impl<'a> BlockRangeColumn<'a> {
165
}
166
167
168
-
169
- pub fn block(&self) -> BlockNumber {
170
- match self {
171
- BlockRangeColumn::Mutable { block, .. } => *block,
172
- BlockRangeColumn::Immutable { block, .. } => *block,
173
- }
174
175
176
177
impl<'a> BlockRangeColumn<'a> {
@@ -227,13 +220,6 @@ impl<'a> BlockRangeColumn<'a> {
227
220
228
221
229
222
230
- pub fn column_name(&self) -> &str {
231
232
- BlockRangeColumn::Mutable { .. } => BLOCK_RANGE_COLUMN,
233
- BlockRangeColumn::Immutable { .. } => BLOCK_COLUMN,
234
235
236
237
223
/// Output the qualified name of the block range column
238
224
pub fn name(&self, out: &mut AstPass<Pg>) {
239
225
match self {
0 commit comments