Enum mz_testdrive::format::avro::SchemaPiece
source · pub enum SchemaPiece {
Show 34 variants
Null,
Boolean,
Int,
Long,
Float,
Double,
Date,
TimestampMilli,
TimestampMicro,
Decimal {
precision: usize,
scale: usize,
fixed_size: Option<usize>,
},
Bytes,
String,
Json,
Uuid,
Array(Box<SchemaPieceOrNamed>),
Map(Box<SchemaPieceOrNamed>),
Union(UnionSchema),
ResolveIntTsMilli,
ResolveIntTsMicro,
ResolveDateTimestamp,
ResolveIntLong,
ResolveIntFloat,
ResolveIntDouble,
ResolveLongFloat,
ResolveLongDouble,
ResolveFloatDouble,
ResolveConcreteUnion {
index: usize,
inner: Box<SchemaPieceOrNamed>,
n_reader_variants: usize,
reader_null_variant: Option<usize>,
},
ResolveUnionUnion {
permutation: Vec<Result<(usize, SchemaPieceOrNamed), Error>>,
n_reader_variants: usize,
reader_null_variant: Option<usize>,
},
ResolveUnionConcrete {
index: usize,
inner: Box<SchemaPieceOrNamed>,
},
Record {
doc: Option<String>,
fields: Vec<RecordField>,
lookup: BTreeMap<String, usize>,
},
Enum {
doc: Option<String>,
symbols: Vec<String>,
default_idx: Option<usize>,
},
Fixed {
size: usize,
},
ResolveRecord {
defaults: Vec<ResolvedDefaultValueField>,
fields: Vec<ResolvedRecordField>,
n_reader_fields: usize,
},
ResolveEnum {
doc: Option<String>,
symbols: Vec<Result<(usize, String), String>>,
default: Option<(usize, String)>,
},
}
Variants§
Null
A null
Avro schema.
Boolean
A boolean
Avro schema.
Int
An int
Avro schema.
Long
A long
Avro schema.
Float
A float
Avro schema.
Double
A double
Avro schema.
Date
An Int
Avro schema with a semantic type being days since the unix epoch.
TimestampMilli
An Int64
Avro schema with a semantic type being milliseconds since the unix epoch.
https://avro.apache.org/docs/current/spec.html#Timestamp+%28millisecond+precision%29
TimestampMicro
An Int64
Avro schema with a semantic type being microseconds since the unix epoch.
https://avro.apache.org/docs/current/spec.html#Timestamp+%28microsecond+precision%29
Decimal
A bytes
or fixed
Avro schema with a logical type of decimal
and
the specified precision and scale.
If the underlying type is fixed
,
the fixed_size
field specifies the size.
Bytes
A bytes
Avro schema.
Bytes
represents a sequence of 8-bit unsigned bytes.
String
A string
Avro schema.
String
represents a unicode character sequence.
Json
A string
Avro schema that is tagged as representing JSON data
Uuid
A string
Avro schema with a logical type of uuid
.
Array(Box<SchemaPieceOrNamed>)
A array
Avro schema. Avro arrays are required to have the same type for each element.
This variant holds the Schema
for the array element type.
Map(Box<SchemaPieceOrNamed>)
A map
Avro schema.
Map
holds a pointer to the Schema
of its values, which must all be the same schema.
Map
keys are assumed to be string
.
Union(UnionSchema)
A union
Avro schema.
ResolveIntTsMilli
A value written as int
and read as long
,
for the timestamp-millis logicalType.
ResolveIntTsMicro
A value written as int
and read as long
,
for the timestamp-micros logicalType.
ResolveDateTimestamp
A value written as an int
with date
logical type,
and read as any timestamp type
ResolveIntLong
A value written as int
and read as long
ResolveIntFloat
A value written as int
and read as float
ResolveIntDouble
A value written as int
and read as double
ResolveLongFloat
A value written as long
and read as float
ResolveLongDouble
A value written as long
and read as double
ResolveFloatDouble
A value written as float
and read as double
ResolveConcreteUnion
A concrete (i.e., non-union
) type in the writer,
resolved against one specific variant of a union
in the reader.
Fields
inner: Box<SchemaPieceOrNamed>
The concrete type
ResolveUnionUnion
A union in the writer, resolved against a union in the reader. The two schemas may have different variants and the variants may be in a different order.
Fields
permutation: Vec<Result<(usize, SchemaPieceOrNamed), Error>>
A mapping of the fields in the writer to those in the reader.
If the i
th element is Err(e)
, the i
th field in the writer
did not match any field in the reader (or even if it matched by name, resolution failed).
If the i
th element is Ok((j, piece))
, then the i
th field of the writer
matched the j
th field of the reader, and piece
is their resolved node.
ResolveUnionConcrete
The inverse of ResolveConcreteUnion
Record
A record
Avro schema.
The lookup
table maps field names to their position in the Vec
of fields
.
Enum
An enum
Avro schema.
Fields
Fixed
A fixed
Avro schema.
ResolveRecord
A record in the writer, resolved against a record in the reader. The two schemas may have different fields and the fields may be in a different order.
Fields
defaults: Vec<ResolvedDefaultValueField>
Fields that do not exist in the writer schema, but had a default value specified in the reader schema, which we use.
fields: Vec<ResolvedRecordField>
Fields in the order of their appearance in the writer schema.
Present
if they could be resolved against a field in the reader schema;
Absent
otherwise.
ResolveEnum
An enum in the writer, resolved against an enum in the reader. The two schemas may have different values and the values may be in a different order.
Implementations§
source§impl SchemaPiece
impl SchemaPiece
sourcepub fn is_underlying_int(&self) -> bool
pub fn is_underlying_int(&self) -> bool
Returns whether the schema node is “underlyingly” an Int (but possibly a logicalType typedef)
sourcepub fn is_underlying_long(&self) -> bool
pub fn is_underlying_long(&self) -> bool
Returns whether the schema node is “underlyingly” an Int64 (but possibly a logicalType typedef)
Trait Implementations§
source§impl Clone for SchemaPiece
impl Clone for SchemaPiece
source§fn clone(&self) -> SchemaPiece
fn clone(&self) -> SchemaPiece
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SchemaPiece
impl Debug for SchemaPiece
source§impl<'a> From<&'a SchemaPiece> for SchemaKind
impl<'a> From<&'a SchemaPiece> for SchemaKind
source§fn from(piece: &'a SchemaPiece) -> SchemaKind
fn from(piece: &'a SchemaPiece) -> SchemaKind
source§impl From<SchemaPiece> for SchemaPieceOrNamed
impl From<SchemaPiece> for SchemaPieceOrNamed
source§fn from(piece: SchemaPiece) -> SchemaPieceOrNamed
fn from(piece: SchemaPiece) -> SchemaPieceOrNamed
source§impl PartialEq for SchemaPiece
impl PartialEq for SchemaPiece
impl StructuralPartialEq for SchemaPiece
Auto Trait Implementations§
impl Freeze for SchemaPiece
impl RefUnwindSafe for SchemaPiece
impl Send for SchemaPiece
impl Sync for SchemaPiece
impl Unpin for SchemaPiece
impl UnwindSafe for SchemaPiece
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
std::ops::AddAssign
, for types that do not implement AddAssign
.source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.