Hibernate report query hibernate_sequence table error in spring-boot application starting on a multi-database mariadb server
Description
Activity
Show:
Nathan Xu December 14, 2019 at 1:10 AM
A PR created at: . I tested it with another related ticket’s demo app:

Lance Fogle December 13, 2019 at 8:44 PMEdited
Just reporting this is also an issue I am facing since upgrading spring-boot (which includes this later version of hibernate) on a project. Now every time the project is ran it produces an error for this in the logs.
Is there no movement on this issue??
mariadb server:
MariaDB [(none)]> select table_schema,table_name from information_schema.TABLES where table_type='SEQUENCE';
------------------------------------+
table_schema
table_name
------------------------------------+
test
hibernate_sequence_1
mdb
hibernate_sequence
------------------------------------+
current connect to database is asd, but where not existing tables like hibernate_sequence
the hibernate class SequenceInformationExtractorMariaDBDatabaseImpl using above sql query two tales in other databases. Then execute following sql, we got the error message:
related codes in class SequenceInformationExtractorMariaDBDatabaseImpl: