php-sql-query-formatter icon indicating copy to clipboard operation
php-sql-query-formatter copied to clipboard

OFFSET is not parsed

Open shadowhand opened this issue 8 years ago • 0 comments

Test case:

SELECT * FROM users LIMIT 50 OFFSET 100

Expected:

SELECT
    *
FROM
    users
LIMIT
    50
OFFSET
    100

Actual:

SELECT
    *
FROM
    users
LIMIT
    50 OFFSET 100

shadowhand avatar Jan 24 '17 05:01 shadowhand