From 73f2921318c3944ebf22d743ac3fdab6981d06de Mon Sep 17 00:00:00 2001 From: Wei-Ting Kuo Date: Tue, 2 Aug 2022 15:37:23 +0800 Subject: [PATCH] fix typo --- datafusion/core/tests/sql/projection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/core/tests/sql/projection.rs b/datafusion/core/tests/sql/projection.rs index 71ebde5785a4..6e59bd42146e 100644 --- a/datafusion/core/tests/sql/projection.rs +++ b/datafusion/core/tests/sql/projection.rs @@ -337,7 +337,7 @@ fn assert_fields_eq(plan: &LogicalPlan, expected: Vec<&str>) { } #[tokio::test] -async fn paralleproject_column_with_same_name_as_relationl() -> Result<()> { +async fn project_column_with_same_name_as_relation() -> Result<()> { let ctx = SessionContext::new(); let sql = "select a.a from (select 1 as a) as a;";