Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for MSSQL's JSON_ARRAY/JSON_OBJECT expr #1507

Merged
merged 23 commits into from
Nov 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/dialect/mod.rs
Co-authored-by: Ifeanyi Ubah <[email protected]>
gaoqiangz and iffyio authored Nov 14, 2024
commit 78e4f07b826627a51dd1aa0a26cd7f9e898170af
2 changes: 1 addition & 1 deletion src/dialect/mod.rs
Original file line number Diff line number Diff line change
@@ -248,7 +248,7 @@ pub trait Dialect: Debug + Any {

/// Returns true if the dialect supports named arguments of the form `FUN(a => '1', b => '2')`.
fn supports_named_fn_args_with_rarrow_operator(&self) -> bool {
true //for compatible
true
}

/// Returns true if dialect supports argument name as arbitrary expression.