Skip to content

Commit a0fcd9e

Browse files
committed
tests
1 parent 80bd033 commit a0fcd9e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

datafusion/core/src/execution/context.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -426,9 +426,8 @@ impl SessionContext {
426426
/// let err = ctx.sql_with_options("CREATE TABLE foo (x INTEGER)", options)
427427
/// .await
428428
/// .unwrap_err();
429-
/// assert_eq!(
430-
/// err.to_string(),
431-
/// "Error during planning: DDL not supported: CreateMemoryTable"
429+
/// assert!(
430+
/// err.to_string().starts_with("Error during planning: DDL not supported: CreateMemoryTable")
432431
/// );
433432
/// # Ok(())
434433
/// # }

0 commit comments

Comments
 (0)