23 comments (23 comments)1 reaction (1 reaction)1 assignee (1 assignee)Java2,678 forks (2,678 forks)batch import
enhancementgood first issuesyntax-needs-review
Repository metrics
- Stars
- 9,113 stars (9,113 stars)
- PR merge metrics
- Avg merge 5d 9h (Avg merge 5d 9h)306 merged PRs in 30d (306 merged PRs in 30d)
Description
According to the Presto docs, there is not currently a function to convert a string to title case.
Contributor guide
- Research direction
- Examine existing string functions in the Trino codebase (e.g., lower, upper) to understand the implementation pattern. Implement a title() function that capitalizes the first letter of each word and lowercases the rest, following the Presto documentation for expected behavior. Add tests and ensure Unicode support.
- Tech stack
- java
- Domain
- backend
- Issue type
- Feature
- Prerequisites
- Java