Skip to content

Commit bc2f0a6

Browse files
author
Sergey Zhukov
committed
Fix issues causing GitHub checks to fail
1 parent 5912178 commit bc2f0a6

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion-examples/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ dashmap = { workspace = true }
4343
# note only use main datafusion crate for examples
4444
base64 = "0.22.1"
4545
datafusion = { workspace = true, default-features = true, features = ["parquet_encryption"] }
46-
datafusion-ffi = { workspace = true }
4746
datafusion-physical-expr-adapter = { workspace = true }
4847
datafusion-proto = { workspace = true }
4948
env_logger = { workspace = true }

datafusion-examples/examples/query_planning/parse_sql_expr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ use datafusion::{
3232
/// The code in this example shows how to:
3333
///
3434
/// 1. [`simple_session_context_parse_sql_expr_demo`]: Parse a simple SQL text into a logical
35-
/// expression using a schema at [`SessionContext`].
35+
/// expression using a schema at [`SessionContext`].
3636
///
3737
/// 2. [`simple_dataframe_parse_sql_expr_demo`]: Parse a simple SQL text into a logical expression
38-
/// using a schema at [`DataFrame`].
38+
/// using a schema at [`DataFrame`].
3939
///
4040
/// 3. [`query_parquet_demo`]: Query a parquet file using the parsed_sql_expr from a DataFrame.
4141
///

datafusion-examples/examples/query_planning/plan_to_sql.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ use std::sync::Arc;
4343
/// The code in this example shows how to:
4444
///
4545
/// 1. [`simple_expr_to_sql_demo`]: Create a simple expression [`Exprs`] with
46-
/// fluent API and convert to sql suitable for passing to another database
46+
/// fluent API and convert to sql suitable for passing to another database
4747
///
4848
/// 2. [`simple_expr_to_pretty_sql_demo`] Create a simple expression
49-
/// [`Exprs`] with fluent API and convert to sql without extra parentheses,
50-
/// suitable for displaying to humans
49+
/// [`Exprs`] with fluent API and convert to sql without extra parentheses,
50+
/// suitable for displaying to humans
5151
///
5252
/// 3. [`simple_expr_to_sql_demo_escape_mysql_style`]" Create a simple
53-
/// expression [`Exprs`] with fluent API and convert to sql escaping column
54-
/// names in MySQL style.
53+
/// expression [`Exprs`] with fluent API and convert to sql escaping column
54+
/// names in MySQL style.
5555
///
5656
/// 4. [`simple_plan_to_sql_demo`]: Create a simple logical plan using the
57-
/// DataFrames API and convert to sql string.
57+
/// DataFrames API and convert to sql string.
5858
///
5959
/// 5. [`round_trip_plan_to_sql_demo`]: Create a logical plan from a SQL string, modify it using the
60-
/// DataFrames API and convert it back to a sql string.
60+
/// DataFrames API and convert it back to a sql string.
6161
///
6262
/// 6. [`unparse_my_logical_plan_as_statement`]: Create a custom logical plan and unparse it as a statement.
6363
///

0 commit comments

Comments
 (0)