eric-maynard commented on code in PR #2653:
URL: https://github.com/apache/polaris/pull/2653#discussion_r2379862431
##########
persistence/relational-jdbc/src/main/java/org/apache/polaris/persistence/relational/jdbc/models/SchemaVersion.java:
##########
@@ -25,6 +25,8 @@
import org.apache.polaris.persistence.relational.jdbc.DatabaseType;
public class SchemaVersion implements Converter<SchemaVersion> {
+ public static final SchemaVersion MINIMUM = new SchemaVersion(0);
Review Comment:
You can have two different schema versions without any behavior difference
between them, so I'm not sure I follow your question.
The problem we are trying to solve is identifying the schema version for a
metastore without a schema version table. The schema version table starts at
version 1. A metastore without this table is therefore a pre-1 version.
--
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]