Can no longer use @MappedSuperclass and @Inheritance annotations in Hibernate 5.4

Isn’t this going to materialize a BaseEntity table in the database that is joined by any subclass when selecting it? If so this is not what we want to achieve.
I worked around it and moved the @Inheritance annotation to any of the subclasses which seems to work properly.