Skip to content

Commit e1bf271

Browse files
authored
Merge pull request #1201 from muzarski/unused-column-spec-parse-error-kind
f_errors: remove unused variant from ColumnSpecParseErrorKind
2 parents 253c514 + 227155a commit e1bf271

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

scylla-cql/src/frame/frame_errors.rs

-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ pub use super::request::{
1111
startup::StartupSerializationError,
1212
};
1313

14-
use super::response::result::TableSpec;
1514
use super::response::CqlResponseKind;
1615
use super::TryFromPrimitiveError;
1716
use thiserror::Error;
@@ -425,9 +424,6 @@ pub struct ColumnSpecParseError {
425424
pub enum ColumnSpecParseErrorKind {
426425
#[error("Invalid table spec: {0}")]
427426
TableSpecParseError(#[from] TableSpecParseError),
428-
// TODO: remove this variant before the next major release.
429-
#[error("Table spec differs across columns - got specs: {0:?} and {1:?}")]
430-
TableSpecDiffersAcrossColumns(TableSpec<'static>, TableSpec<'static>),
431427
#[error("Malformed column name: {0}")]
432428
ColumnNameParseError(#[from] LowLevelDeserializationError),
433429
#[error("Invalid column type: {0}")]

0 commit comments

Comments
 (0)