flyrain commented on code in PR #2653:
URL: https://github.com/apache/polaris/pull/2653#discussion_r2373113258
##########
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:
I might miss something. What would be behavior difference between a 1.0 v1
schema and a 1.1 v1 schema? I think they should be identical. The problem we
are trying to resolve is that the 1.0 v1 schema doesn't have a version table
when 1.1 Polaris deployed. The system behavior should be the same as if there
is a version table with version 1.
--
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]