File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
spark3/src/test/java/org/apache/iceberg/spark/sql Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 32
32
import org .junit .Assert ;
33
33
import org .junit .Assume ;
34
34
import org .junit .Before ;
35
- import org .junit .Ignore ;
36
35
import org .junit .Test ;
37
36
38
37
public class TestAlterTable extends SparkCatalogTestBase {
@@ -189,7 +188,7 @@ public void testAlterColumnPositionFirst() {
189
188
expectedSchema , validationCatalog .loadTable (tableIdent ).schema ().asStruct ());
190
189
}
191
190
192
- @ Ignore // requires catalog names from #1147
191
+ @ Test
193
192
public void testTableRename () {
194
193
Assume .assumeFalse ("Hadoop catalog does not support rename" , validationCatalog instanceof HadoopCatalog );
195
194
Original file line number Diff line number Diff line change 35
35
import org .junit .After ;
36
36
import org .junit .Assert ;
37
37
import org .junit .Assume ;
38
- import org .junit .Ignore ;
39
38
import org .junit .Test ;
40
39
41
40
public class TestCreateTable extends SparkCatalogTestBase {
@@ -66,7 +65,7 @@ public void testCreateTable() {
66
65
table .properties ().get (TableProperties .DEFAULT_FILE_FORMAT ));
67
66
}
68
67
69
- @ Ignore // requires table properties fix in #1147
68
+ @ Test
70
69
public void testCreateTableUsingParquet () {
71
70
Assume .assumeTrue (
72
71
"Not working with session catalog because Spark will not use v2 for a Parquet table" ,
You can’t perform that action at this time.
0 commit comments