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 d2c922f commit 9d6865eCopy full SHA for 9d6865e
store/postgres/src/block_range.rs
@@ -164,13 +164,6 @@ impl<'a> BlockRangeColumn<'a> {
164
}
165
166
167
-
168
- pub fn block(&self) -> BlockNumber {
169
- match self {
170
- BlockRangeColumn::Mutable { block, .. } => *block,
171
- BlockRangeColumn::Immutable { block, .. } => *block,
172
- }
173
174
175
176
impl<'a> BlockRangeColumn<'a> {
@@ -226,13 +219,6 @@ impl<'a> BlockRangeColumn<'a> {
226
219
227
220
228
221
229
- pub fn column_name(&self) -> &str {
230
231
- BlockRangeColumn::Mutable { .. } => BLOCK_RANGE_COLUMN,
232
- BlockRangeColumn::Immutable { .. } => BLOCK_COLUMN,
233
234
235
236
222
/// Output the qualified name of the block range column
237
223
pub fn name(&self, out: &mut AstPass<Pg>) {
238
224
match self {
0 commit comments