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 data type specific methods #1535

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Add support for data type specific methods
  • Loading branch information
yoavcloud committed Nov 19, 2024
commit abbcac2c200ce9c236d6059c24e455404321e951
4 changes: 2 additions & 2 deletions tests/sqlparser_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11550,9 +11550,9 @@ fn parse_method_expr() {
}
_ => unreachable!(),
}

dialects.verified_stmt(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add a scenario in the style of a::b::c().d()?

"SELECT phone, some_namespace::some_function().method_a(345345) FROM customers"
"SELECT phone, some_namespace::some_function().method_a(345345) FROM customers",
);

dialects.verified_stmt(
Expand Down
Loading