Skip to content

Commit

Permalink
make unparser Dialect Send + Sync (apache#11504)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-f-u authored Jul 19, 2024
1 parent a4c9bb4 commit af0d2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/sql/src/unparser/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use sqlparser::{ast, keywords::ALL_KEYWORDS};
///
/// See <https://github.com/sqlparser-rs/sqlparser-rs/pull/1170>
/// See also the discussion in <https://github.com/apache/datafusion/pull/10625>
pub trait Dialect {
pub trait Dialect: Send + Sync {
/// Return the character used to quote identifiers.
fn identifier_quote_style(&self, _identifier: &str) -> Option<char>;

Expand Down

0 comments on commit af0d2ba

Please sign in to comment.