Hello, when starting H2 in "MySQL Mode" (using *MODE=MySQL* in the connection URL), the documentation says: "Meta data calls return identifiers in lower case."
Unfortunatelyl DatabaseMetaData.storesUpperCaseIdentifiers() still returns true in that case and DatabaseMetaData.storesLowerCaseIdentifiers() still returns fals. If those methods are used to determine whether a table named test needs to be quoted (because it's stored in a non-default case) the test fails because of. I would expect DatabaseMetaData.storesLowerCaseIdentifiers() to return true and DatabaseMetaData.storesLowerCaseIdentifiers() to return false in MySQL mode - or am I missing something? -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To view this discussion on the web visit https://groups.google.com/d/msg/h2-database/-/Wtv8JwBW_64J. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
