boluor commented on issue #3021: URL: https://github.com/apache/doris-website/issues/3021#issuecomment-4525857583
The current docs are correct — table names in Doris are **case-sensitive by default**, not case-insensitive. The \`lower_case_table_names\` config (FE) takes these values: - \`0\` (default): identifiers are stored and compared **case-sensitively** (Doris's default behaviour). - \`1\`: identifiers are lower-cased on storage and compared case-insensitively. - \`2\`: identifiers are stored as given but compared case-insensitively. This is the same convention as MySQL. Setting \`lower_case_table_names=1\` therefore makes table names case-**insensitive** (the opposite of what your suggested text says). The \`table-design/overview\` table already says default = "Case-sensitive". Closing-ready unless I'm misreading your suggestion. -- 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]
