@@ -52,9 +52,20 @@ public abstract class ViewCatalogTests<C extends ViewCatalog & SupportsNamespace
52
52
required (3 , "id" , Types .IntegerType .get (), "unique ID" ),
53
53
required (4 , "data" , Types .StringType .get ()));
54
54
55
+ // actual schema for the view, with column IDs reassigned
56
+ protected static final Schema VIEW_SCHEMA =
57
+ new Schema (
58
+ 0 ,
59
+ required (1 , "id" , Types .IntegerType .get (), "unique ID" ),
60
+ required (2 , "data" , Types .StringType .get ()));
61
+
55
62
private static final Schema OTHER_SCHEMA =
56
63
new Schema (7 , required (1 , "some_id" , Types .IntegerType .get ()));
57
64
65
+ // actual replaced schema for the view, with column IDs reassigned
66
+ private static final Schema OTHER_VIEW_SCHEMA =
67
+ new Schema (1 , required (3 , "some_id" , Types .IntegerType .get ()));
68
+
58
69
protected abstract C catalog ();
59
70
60
71
protected abstract Catalog tableCatalog ();
@@ -102,18 +113,18 @@ public void basicCreateView() {
102
113
.first ()
103
114
.extracting (ViewHistoryEntry ::versionId )
104
115
.isEqualTo (1 );
105
- assertThat (view .schema ().schemaId ()).isEqualTo (0 );
106
- assertThat (view .schema ().asStruct ()).isEqualTo (SCHEMA .asStruct ());
116
+ assertThat (view .schema ().schemaId ()).isEqualTo (VIEW_SCHEMA . schemaId () );
117
+ assertThat (view .schema ().asStruct ()).isEqualTo (VIEW_SCHEMA .asStruct ());
107
118
assertThat (view .currentVersion ().operation ()).isEqualTo ("create" );
108
- assertThat (view .schemas ()).hasSize (1 ).containsKey (0 );
119
+ assertThat (view .schemas ()).hasSize (1 ).containsKey (VIEW_SCHEMA . schemaId () );
109
120
assertThat (view .versions ()).hasSize (1 ).containsExactly (view .currentVersion ());
110
121
111
122
assertThat (view .currentVersion ())
112
123
.isEqualTo (
113
124
ImmutableViewVersion .builder ()
114
125
.timestampMillis (view .currentVersion ().timestampMillis ())
115
126
.versionId (1 )
116
- .schemaId (0 )
127
+ .schemaId (VIEW_SCHEMA . schemaId () )
117
128
.summary (view .currentVersion ().summary ())
118
129
.defaultNamespace (identifier .namespace ())
119
130
.addRepresentations (
@@ -173,17 +184,17 @@ public void completeCreateView() {
173
184
.extracting (ViewHistoryEntry ::versionId )
174
185
.isEqualTo (1 );
175
186
assertThat (view .currentVersion ().operation ()).isEqualTo ("create" );
176
- assertThat (view .schema ().schemaId ()).isEqualTo (0 );
177
- assertThat (view .schema ().asStruct ()).isEqualTo (SCHEMA .asStruct ());
178
- assertThat (view .schemas ()).hasSize (1 ).containsKey (0 );
187
+ assertThat (view .schema ().schemaId ()).isEqualTo (VIEW_SCHEMA . schemaId () );
188
+ assertThat (view .schema ().asStruct ()).isEqualTo (VIEW_SCHEMA .asStruct ());
189
+ assertThat (view .schemas ()).hasSize (1 ).containsKey (VIEW_SCHEMA . schemaId () );
179
190
assertThat (view .versions ()).hasSize (1 ).containsExactly (view .currentVersion ());
180
191
181
192
assertThat (view .currentVersion ())
182
193
.isEqualTo (
183
194
ImmutableViewVersion .builder ()
184
195
.timestampMillis (view .currentVersion ().timestampMillis ())
185
196
.versionId (1 )
186
- .schemaId (0 )
197
+ .schemaId (VIEW_SCHEMA . schemaId () )
187
198
.summary (view .currentVersion ().summary ())
188
199
.defaultNamespace (identifier .namespace ())
189
200
.defaultCatalog (catalog ().name ())
@@ -885,17 +896,20 @@ public void createOrReplaceView(boolean useCreateOrReplace) {
885
896
.extracting (ViewHistoryEntry ::versionId )
886
897
.isEqualTo (2 );
887
898
888
- assertThat (replacedView .schema ().schemaId ()).isEqualTo (1 );
889
- assertThat (replacedView .schema ().asStruct ()).isEqualTo (OTHER_SCHEMA .asStruct ());
890
- assertThat (replacedView .schemas ()).hasSize (2 ).containsKey (0 ).containsKey (1 );
899
+ assertThat (replacedView .schema ().schemaId ()).isEqualTo (OTHER_VIEW_SCHEMA .schemaId ());
900
+ assertThat (replacedView .schema ().asStruct ()).isEqualTo (OTHER_VIEW_SCHEMA .asStruct ());
901
+ assertThat (replacedView .schemas ())
902
+ .hasSize (2 )
903
+ .containsKey (VIEW_SCHEMA .schemaId ())
904
+ .containsKey (OTHER_VIEW_SCHEMA .schemaId ());
891
905
892
906
ViewVersion replacedViewVersion = replacedView .currentVersion ();
893
907
assertThat (replacedView .versions ())
894
908
.hasSize (2 )
895
909
.containsExactly (viewVersion , replacedViewVersion );
896
910
assertThat (replacedViewVersion ).isNotNull ();
897
911
assertThat (replacedViewVersion .versionId ()).isEqualTo (2 );
898
- assertThat (replacedViewVersion .schemaId ()).isEqualTo (1 );
912
+ assertThat (replacedViewVersion .schemaId ()).isEqualTo (OTHER_VIEW_SCHEMA . schemaId () );
899
913
assertThat (replacedViewVersion .operation ()).isEqualTo ("replace" );
900
914
assertThat (replacedViewVersion .representations ())
901
915
.containsExactly (
@@ -1120,7 +1134,12 @@ public void replaceViewVersion() {
1120
1134
.element (1 )
1121
1135
.extracting (ViewHistoryEntry ::versionId )
1122
1136
.isEqualTo (updatedView .currentVersion ().versionId ());
1123
- assertThat (updatedView .schemas ()).hasSize (2 ).containsKey (0 ).containsKey (1 );
1137
+ assertThat (updatedView .schemas ())
1138
+ .hasSize (2 )
1139
+ .containsKey (VIEW_SCHEMA .schemaId ())
1140
+ .containsKey (OTHER_VIEW_SCHEMA .schemaId ());
1141
+ assertThat (updatedView .schema ().schemaId ()).isEqualTo (OTHER_VIEW_SCHEMA .schemaId ());
1142
+ assertThat (updatedView .schema ().asStruct ()).isEqualTo (OTHER_VIEW_SCHEMA .asStruct ());
1124
1143
assertThat (updatedView .versions ())
1125
1144
.hasSize (2 )
1126
1145
.containsExactly (viewVersion , updatedView .currentVersion ());
@@ -1130,7 +1149,7 @@ public void replaceViewVersion() {
1130
1149
assertThat (updatedViewVersion .versionId ()).isEqualTo (viewVersion .versionId () + 1 );
1131
1150
assertThat (updatedViewVersion .operation ()).isEqualTo ("replace" );
1132
1151
assertThat (updatedViewVersion .representations ()).hasSize (1 ).containsExactly (trino );
1133
- assertThat (updatedViewVersion .schemaId ()).isEqualTo (1 );
1152
+ assertThat (updatedViewVersion .schemaId ()).isEqualTo (OTHER_VIEW_SCHEMA . schemaId () );
1134
1153
assertThat (updatedViewVersion .defaultCatalog ()).isEqualTo ("default" );
1135
1154
assertThat (updatedViewVersion .defaultNamespace ()).isEqualTo (identifier .namespace ());
1136
1155
@@ -1585,6 +1604,8 @@ public void concurrentReplaceViewVersion() {
1585
1604
viewOps .commit (current , sparkUpdate );
1586
1605
1587
1606
View updatedView = catalog ().loadView (identifier );
1607
+ assertThat (updatedView .schema ().schemaId ()).isEqualTo (VIEW_SCHEMA .schemaId ());
1608
+ assertThat (updatedView .schema ().asStruct ()).isEqualTo (VIEW_SCHEMA .asStruct ());
1588
1609
ViewVersion viewVersion = updatedView .currentVersion ();
1589
1610
assertThat (viewVersion .versionId ()).isEqualTo (3 );
1590
1611
assertThat (updatedView .versions ()).hasSize (3 );
@@ -1593,7 +1614,7 @@ public void concurrentReplaceViewVersion() {
1593
1614
ImmutableViewVersion .builder ()
1594
1615
.timestampMillis (updatedView .version (1 ).timestampMillis ())
1595
1616
.versionId (1 )
1596
- .schemaId (0 )
1617
+ .schemaId (VIEW_SCHEMA . schemaId () )
1597
1618
.summary (updatedView .version (1 ).summary ())
1598
1619
.defaultNamespace (identifier .namespace ())
1599
1620
.addRepresentations (
@@ -1608,7 +1629,7 @@ public void concurrentReplaceViewVersion() {
1608
1629
ImmutableViewVersion .builder ()
1609
1630
.timestampMillis (updatedView .version (2 ).timestampMillis ())
1610
1631
.versionId (2 )
1611
- .schemaId (1 )
1632
+ .schemaId (OTHER_VIEW_SCHEMA . schemaId () )
1612
1633
.summary (updatedView .version (2 ).summary ())
1613
1634
.defaultNamespace (identifier .namespace ())
1614
1635
.addRepresentations (
@@ -1623,7 +1644,7 @@ public void concurrentReplaceViewVersion() {
1623
1644
ImmutableViewVersion .builder ()
1624
1645
.timestampMillis (updatedView .version (3 ).timestampMillis ())
1625
1646
.versionId (3 )
1626
- .schemaId (0 )
1647
+ .schemaId (VIEW_SCHEMA . schemaId () )
1627
1648
.summary (updatedView .version (3 ).summary ())
1628
1649
.defaultNamespace (identifier .namespace ())
1629
1650
.addRepresentations (
@@ -1638,6 +1659,8 @@ public void concurrentReplaceViewVersion() {
1638
1659
.hasMessageContaining ("Cannot commit" );
1639
1660
1640
1661
View updatedView = catalog ().loadView (identifier );
1662
+ assertThat (updatedView .schema ().schemaId ()).isEqualTo (OTHER_VIEW_SCHEMA .schemaId ());
1663
+ assertThat (updatedView .schema ().asStruct ()).isEqualTo (OTHER_VIEW_SCHEMA .asStruct ());
1641
1664
ViewVersion viewVersion = updatedView .currentVersion ();
1642
1665
assertThat (viewVersion .versionId ()).isEqualTo (2 );
1643
1666
assertThat (updatedView .versions ()).hasSize (2 );
@@ -1646,7 +1669,7 @@ public void concurrentReplaceViewVersion() {
1646
1669
ImmutableViewVersion .builder ()
1647
1670
.timestampMillis (updatedView .version (1 ).timestampMillis ())
1648
1671
.versionId (1 )
1649
- .schemaId (0 )
1672
+ .schemaId (VIEW_SCHEMA . schemaId () )
1650
1673
.summary (updatedView .version (1 ).summary ())
1651
1674
.defaultNamespace (identifier .namespace ())
1652
1675
.addRepresentations (
@@ -1661,7 +1684,7 @@ public void concurrentReplaceViewVersion() {
1661
1684
ImmutableViewVersion .builder ()
1662
1685
.timestampMillis (updatedView .version (2 ).timestampMillis ())
1663
1686
.versionId (2 )
1664
- .schemaId (1 )
1687
+ .schemaId (OTHER_VIEW_SCHEMA . schemaId () )
1665
1688
.summary (updatedView .version (2 ).summary ())
1666
1689
.defaultNamespace (identifier .namespace ())
1667
1690
.addRepresentations (
0 commit comments