mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-23 07:24:10 +00:00
Add support for mysql table hints (#1675)
This commit is contained in:
parent
fdbe864d0d
commit
f7b0812b01
12 changed files with 266 additions and 5 deletions
|
@ -2036,6 +2036,7 @@ fn parse_update_with_joins() {
|
|||
with_ordinality: false,
|
||||
json_path: None,
|
||||
sample: None,
|
||||
index_hints: vec![],
|
||||
},
|
||||
joins: vec![Join {
|
||||
relation: TableFactor::Table {
|
||||
|
@ -2051,6 +2052,7 @@ fn parse_update_with_joins() {
|
|||
with_ordinality: false,
|
||||
json_path: None,
|
||||
sample: None,
|
||||
index_hints: vec![],
|
||||
},
|
||||
global: false,
|
||||
join_operator: JoinOperator::Inner(JoinConstraint::On(Expr::BinaryOp {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue