Skip to content

Commit 6fabeb0

Browse files
y-f-uLordworms
authored andcommitted
make unparser Dialect Send + Sync (apache#11504)
1 parent 52287ca commit 6fabeb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/sql/src/unparser/dialect.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use sqlparser::{ast, keywords::ALL_KEYWORDS};
2727
///
2828
/// See <https://github.com/sqlparser-rs/sqlparser-rs/pull/1170>
2929
/// See also the discussion in <https://github.com/apache/datafusion/pull/10625>
30-
pub trait Dialect {
30+
pub trait Dialect: Send + Sync {
3131
/// Return the character used to quote identifiers.
3232
fn identifier_quote_style(&self, _identifier: &str) -> Option<char>;
3333

0 commit comments

Comments
 (0)