Add support for mysql table hints (#1675)

This commit is contained in:
AvivDavid-Satori 2025-01-28 10:41:03 +02:00 committed by GitHub
parent fdbe864d0d
commit f7b0812b01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 266 additions and 5 deletions

View file

@ -362,6 +362,7 @@ pub fn table(name: impl Into<String>) -> TableFactor {
with_ordinality: false,
json_path: None,
sample: None,
index_hints: vec![],
}
}
@ -376,6 +377,7 @@ pub fn table_from_name(name: ObjectName) -> TableFactor {
with_ordinality: false,
json_path: None,
sample: None,
index_hints: vec![],
}
}
@ -393,6 +395,7 @@ pub fn table_with_alias(name: impl Into<String>, alias: impl Into<String>) -> Ta
with_ordinality: false,
json_path: None,
sample: None,
index_hints: vec![],
}
}