Baymine opened a new issue, #65252:
URL: https://github.com/apache/doris/issues/65252

   `DUMP` is a lexer keyword used by `PLAN REPLAYER DUMP`, but it was never 
added to the `nonReserved` list in the Nereids grammar. As a result, `dump` 
cannot be used as an ordinary identifier — e.g. a column, table, alias, or CTE 
named `dump` fails to parse:
   
   ```sql
   SELECT dump FROM t;              -- parse error
   SELECT 1 AS dump FROM t;         -- parse error
   ```
   
   In older versions (e.g. 2.1) `dump` worked as an identifier, so this is a 
backward-compatibility regression for users who have objects named `dump`. 
`DUMP` should be a non-reserved keyword.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to