Mohamed Abdeen

Results 5 issues of Mohamed Abdeen

## Which issue does this PR close? Closes #10280. Thanks @JasonLi-cn for pointing out the relevant code snippet and the detailed description, saved me some time ❤️ ## Rationale for...

optimizer

## Which issue does this PR close? Revert #10333 related to https://github.com/apache/datafusion/issues/10280 ## Rationale for this change This issue is to be revisited after #10413. ## What changes are included...

optimizer
sqllogictest

## Which issue does this PR close? Takes a shot at #10633 . ## Rationale for this change Algorithm adopted from [this](https://stackoverflow.com/a/18403396/16516114) SO answer. ## What changes are included in...

sql

This PR should close #1211 and is a follow-up to #1212 which ignores trailing commas option when parsing DCLs. Tests included. cc @lovasoa

# How to reproduce ```rs use sqlparser::{ dialect::GenericDialect, parser::{Parser, ParserError, ParserOptions}, }; fn main() -> Result { let dialect = GenericDialect {}; let options = ParserOptions::new().with_trailing_commas(true); let result = Parser::new(&dialect)...