1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.hadoop.hbase.mapreduce;
20
21 import java.io.IOException;
22
23 import org.apache.hadoop.hbase.testclassification.LargeTests;
24 import org.junit.Ignore;
25 import org.junit.Test;
26 import org.junit.experimental.categories.Category;
27
28
29
30
31
32 @Category(LargeTests.class)
33 public class TestTableInputFormatScan2 extends TestTableInputFormatScanBase {
34
35
36
37
38
39
40
41
42 @Ignore
43 @Test
44 public void testScanOBBToOPP()
45 throws IOException, InterruptedException, ClassNotFoundException {
46 testScan("obb", "opp", "opo");
47 }
48
49
50
51
52
53
54
55
56 @Ignore
57 @Test
58 public void testScanOBBToQPP()
59 throws IOException, InterruptedException, ClassNotFoundException {
60 testScan("obb", "qpp", "qpo");
61 }
62
63
64
65
66
67
68
69
70 @Ignore
71 @Test
72 public void testScanOPPToEmpty()
73 throws IOException, InterruptedException, ClassNotFoundException {
74 testScan("opp", null, "zzz");
75 }
76
77
78
79
80
81
82
83
84 @Ignore
85 @Test
86 public void testScanYYXToEmpty()
87 throws IOException, InterruptedException, ClassNotFoundException {
88 testScan("yyx", null, "zzz");
89 }
90
91
92
93
94
95
96
97
98 @Ignore
99 @Test
100 public void testScanYYYToEmpty()
101 throws IOException, InterruptedException, ClassNotFoundException {
102 testScan("yyy", null, "zzz");
103 }
104
105
106
107
108
109
110
111
112 @Ignore
113 @Test
114 public void testScanYZYToEmpty()
115 throws IOException, InterruptedException, ClassNotFoundException {
116 testScan("yzy", null, "zzz");
117 }
118
119 @Ignore
120 @Test
121 public void testScanFromConfiguration()
122 throws IOException, InterruptedException, ClassNotFoundException {
123 testScanFromConfiguration("bba", "bbd", "bbc");
124 }
125 }