Skip to content

Commit

Permalink
chore: resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
v0y4g3r committed Jan 4, 2024
1 parent 33c47e4 commit cc64d10
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/mito2/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,18 @@ pub enum Error {
error: parquet::errors::ParquetError,
},

#[snafu(display(
"Stale log entry found during replay, region: {}, flushed: {}, replayed: {}",
region_id,
flushed_entry_id,
unexpected_entry_id
))]
StaleLogEntry {
region_id: RegionId,
flushed_entry_id: u64,
unexpected_entry_id: u64,
},

#[snafu(display("Column not found, column: {column}"))]
ColumnNotFound { column: String, location: Location },

Expand Down

0 comments on commit cc64d10

Please sign in to comment.