We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32aa0e9 commit 7a534fbCopy full SHA for 7a534fb
datafusion/sql/src/unparser/expr.rs
@@ -536,6 +536,7 @@ impl Unparser<'_> {
536
.collect::<Result<Vec<_>>>()
537
}
538
539
+ /// This function can create an identifier with or without quotes based on the dialect rules
540
pub(super) fn new_ident_quoted_if_needs(&self, ident: String) -> ast::Ident {
541
if self.dialect.identifier_needs_quote(&ident) {
542
self.new_ident(ident)
0 commit comments