@@ -26,7 +26,7 @@ function EmptyArray(testCase)
26
26
27
27
expected .export(cArray .Address , cSchema .Address );
28
28
actual = arrow .array .Array .import(cArray , cSchema );
29
-
29
+
30
30
testCase .verifyEqual(actual , expected );
31
31
32
32
% Empty 0x1
@@ -36,7 +36,7 @@ function EmptyArray(testCase)
36
36
37
37
expected .export(cArray .Address , cSchema .Address );
38
38
actual = arrow .array .Array .import(cArray , cSchema );
39
-
39
+
40
40
testCase .verifyEqual(actual , expected );
41
41
42
42
% Empty 1x0
@@ -46,7 +46,7 @@ function EmptyArray(testCase)
46
46
47
47
expected .export(cArray .Address , cSchema .Address );
48
48
actual = arrow .array .Array .import(cArray , cSchema );
49
-
49
+
50
50
testCase .verifyEqual(actual , expected );
51
51
end
52
52
@@ -58,7 +58,7 @@ function ArrayWithNulls(testCase)
58
58
59
59
expected .export(cArray .Address , cSchema .Address );
60
60
actual = arrow .array .Array .import(cArray , cSchema );
61
-
61
+
62
62
testCase .verifyEqual(actual , expected );
63
63
64
64
% Vector with nulls
@@ -68,7 +68,7 @@ function ArrayWithNulls(testCase)
68
68
69
69
expected .export(cArray .Address , cSchema .Address );
70
70
actual = arrow .array .Array .import(cArray , cSchema );
71
-
71
+
72
72
testCase .verifyEqual(actual , expected );
73
73
74
74
% Vector all nulls
@@ -90,7 +90,7 @@ function Float64Array(testCase)
90
90
91
91
expected .export(cArray .Address , cSchema .Address );
92
92
actual = arrow .array .Array .import(cArray , cSchema );
93
-
93
+
94
94
testCase .verifyEqual(actual , expected );
95
95
96
96
% Vector
@@ -100,7 +100,7 @@ function Float64Array(testCase)
100
100
101
101
expected .export(cArray .Address , cSchema .Address );
102
102
actual = arrow .array .Array .import(cArray , cSchema );
103
-
103
+
104
104
testCase .verifyEqual(actual , expected );
105
105
end
106
106
@@ -112,7 +112,7 @@ function StringArray(testCase)
112
112
113
113
expected .export(cArray .Address , cSchema .Address );
114
114
actual = arrow .array .Array .import(cArray , cSchema );
115
-
115
+
116
116
testCase .verifyEqual(actual , expected );
117
117
118
118
% Vector
@@ -122,7 +122,7 @@ function StringArray(testCase)
122
122
123
123
expected .export(cArray .Address , cSchema .Address );
124
124
actual = arrow .array .Array .import(cArray , cSchema );
125
-
125
+
126
126
testCase .verifyEqual(actual , expected );
127
127
end
128
128
@@ -134,7 +134,7 @@ function TimestampArray(testCase)
134
134
135
135
expected .export(cArray .Address , cSchema .Address );
136
136
actual = arrow .array .Array .import(cArray , cSchema );
137
-
137
+
138
138
testCase .verifyEqual(actual , expected );
139
139
140
140
% Vector
@@ -148,7 +148,7 @@ function TimestampArray(testCase)
148
148
149
149
expected .export(cArray .Address , cSchema .Address );
150
150
actual = arrow .array .Array .import(cArray , cSchema );
151
-
151
+
152
152
testCase .verifyEqual(actual , expected );
153
153
end
154
154
@@ -199,5 +199,5 @@ function ImportErrorImportFailed(testCase)
199
199
end
200
200
201
201
end
202
-
203
- end
202
+
203
+ end
0 commit comments