Skip to content

Minor(proto): Implement TryFrom<&DFSchema> for protobuf::DfSchema #7505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions datafusion/proto/src/logical_plan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1455,8 +1455,8 @@ mod roundtrip_tests {
};
use datafusion::test_util::{TestTableFactory, TestTableProvider};
use datafusion_common::{
internal_err, not_impl_err, plan_err, DFSchemaRef, DataFusionError, Result,
ScalarValue,
internal_err, not_impl_err, plan_err, DFField, DFSchema, DFSchemaRef,
DataFusionError, Result, ScalarValue,
};
use datafusion_expr::expr::{
self, Between, BinaryExpr, Case, Cast, GroupingSet, InList, Like, ScalarFunction,
Expand Down Expand Up @@ -2367,6 +2367,35 @@ mod roundtrip_tests {
assert_eq!(schema, returned_schema);
}

#[test]
fn roundtrip_dfschema() {
let dfschema = DFSchema::new_with_metadata(
vec![
DFField::new_unqualified("a", DataType::Int64, false),
DFField::new(Some("t"), "b", DataType::Decimal128(15, 2), true)
.with_metadata(HashMap::from([(
String::from("k1"),
String::from("v1"),
)])),
],
HashMap::from([
(String::from("k2"), String::from("v2")),
(String::from("k3"), String::from("v3")),
]),
)
.unwrap();
let proto_dfschema: super::protobuf::DfSchema = (&dfschema).try_into().unwrap();
let returned_dfschema: DFSchema = (&proto_dfschema).try_into().unwrap();
assert_eq!(dfschema, returned_dfschema);

let arc_dfschema = Arc::new(dfschema.clone());
let proto_dfschema: super::protobuf::DfSchema =
(&arc_dfschema).try_into().unwrap();
let returned_arc_dfschema: DFSchemaRef = proto_dfschema.try_into().unwrap();
assert_eq!(arc_dfschema, returned_arc_dfschema);
assert_eq!(dfschema, *returned_arc_dfschema);
}

#[test]
fn roundtrip_not() {
let test_expr = Expr::Not(Box::new(lit(1.0_f32)));
Expand Down
16 changes: 13 additions & 3 deletions datafusion/proto/src/logical_plan/to_proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ use arrow::datatypes::{
DataType, Field, IntervalMonthDayNanoType, IntervalUnit, Schema, SchemaRef, TimeUnit,
UnionMode,
};
use datafusion_common::{Column, DFField, DFSchemaRef, OwnedTableReference, ScalarValue};
use datafusion_common::{
Column, DFField, DFSchema, DFSchemaRef, OwnedTableReference, ScalarValue,
};
use datafusion_expr::expr::{
self, Alias, Between, BinaryExpr, Cast, GetFieldAccess, GetIndexedField, GroupingSet,
InList, Like, Placeholder, ScalarFunction, ScalarUDF, Sort,
Expand Down Expand Up @@ -300,10 +302,10 @@ impl TryFrom<&DFField> for protobuf::DfField {
}
}

impl TryFrom<&DFSchemaRef> for protobuf::DfSchema {
impl TryFrom<&DFSchema> for protobuf::DfSchema {
type Error = Error;

fn try_from(s: &DFSchemaRef) -> Result<Self, Self::Error> {
fn try_from(s: &DFSchema) -> Result<Self, Self::Error> {
let columns = s
.fields()
.iter()
Expand All @@ -316,6 +318,14 @@ impl TryFrom<&DFSchemaRef> for protobuf::DfSchema {
}
}

impl TryFrom<&DFSchemaRef> for protobuf::DfSchema {
type Error = Error;

fn try_from(s: &DFSchemaRef) -> Result<Self, Self::Error> {
s.as_ref().try_into()
}
}

impl From<&StringifiedPlan> for protobuf::StringifiedPlan {
fn from(stringified_plan: &StringifiedPlan) -> Self {
Self {
Expand Down