DAMO-NLP-SG / DAMO-NLP-SG/LLM-R2
Suggested code correction
Open
- Dominant language
- Python
- Stars
- 54
- Forks
- 13
- PR merge metrics
- No merged PRs in 30d
Description
I found an issue with
```if not i.startswith('SELECT') and not i.startswith('select') and not i.startswith('with '):``` in rewriter.py. I had to also add "WITH", so changed it to
```if not i.startswith('SELECT') and not i.startswith('select') and not i.startswith('with ') and not i.startswith('WITH'):```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.