hiSandog commented on issue #18391: URL: https://github.com/apache/dolphinscheduler/issues/18391#issuecomment-4876959506
This looks like a portability issue in the metadata query rather than an AlertServer-specific startup problem. PostgreSQL exposes `information_schema.tables` in lowercase, so a regression test should run the plugin-define existence check against PostgreSQL and verify it does not reference `information_schema.TABLES`. If the intent is just “does this table exist in the current schema?”, `to_regclass(...)` or a lowercase `information_schema.tables` query with `table_schema` included would avoid both case-sensitivity and cross-schema surprises. -- 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]
