File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,72 +79,72 @@ describe('Data types', () => {
7979 {
8080 col_name : 'bool' ,
8181 data_type : 'boolean' ,
82- comment : '' ,
82+ comment : null ,
8383 } ,
8484 {
8585 col_name : 'tiny_int' ,
8686 data_type : 'tinyint' ,
87- comment : '' ,
87+ comment : null ,
8888 } ,
8989 {
9090 col_name : 'small_int' ,
9191 data_type : 'smallint' ,
92- comment : '' ,
92+ comment : null ,
9393 } ,
9494 {
9595 col_name : 'int_type' ,
9696 data_type : 'int' ,
97- comment : '' ,
97+ comment : null ,
9898 } ,
9999 {
100100 col_name : 'big_int' ,
101101 data_type : 'bigint' ,
102- comment : '' ,
102+ comment : null ,
103103 } ,
104104 {
105105 col_name : 'flt' ,
106106 data_type : 'float' ,
107- comment : '' ,
107+ comment : null ,
108108 } ,
109109 {
110110 col_name : 'dbl' ,
111111 data_type : 'double' ,
112- comment : '' ,
112+ comment : null ,
113113 } ,
114114 {
115115 col_name : 'dec' ,
116116 data_type : 'decimal(3,2)' ,
117- comment : '' ,
117+ comment : null ,
118118 } ,
119119 {
120120 col_name : 'str' ,
121121 data_type : 'string' ,
122- comment : '' ,
122+ comment : null ,
123123 } ,
124124 {
125125 col_name : 'ts' ,
126126 data_type : 'timestamp' ,
127- comment : '' ,
127+ comment : null ,
128128 } ,
129129 {
130130 col_name : 'bin' ,
131131 data_type : 'binary' ,
132- comment : '' ,
132+ comment : null ,
133133 } ,
134134 {
135135 col_name : 'chr' ,
136136 data_type : 'char(10)' ,
137- comment : '' ,
137+ comment : null ,
138138 } ,
139139 {
140140 col_name : 'vchr' ,
141141 data_type : 'varchar(10)' ,
142- comment : '' ,
142+ comment : null ,
143143 } ,
144144 {
145145 col_name : 'dat' ,
146146 data_type : 'date' ,
147- comment : '' ,
147+ comment : null ,
148148 } ,
149149 ] ) ;
150150
@@ -210,12 +210,12 @@ describe('Data types', () => {
210210 {
211211 col_name : 'day_interval' ,
212212 data_type : 'interval day' ,
213- comment : '' ,
213+ comment : null ,
214214 } ,
215215 {
216216 col_name : 'month_interval' ,
217217 data_type : 'interval month' ,
218- comment : '' ,
218+ comment : null ,
219219 } ,
220220 ] ) ;
221221
@@ -264,22 +264,22 @@ describe('Data types', () => {
264264 {
265265 col_name : 'id' ,
266266 data_type : 'int' ,
267- comment : '' ,
267+ comment : null ,
268268 } ,
269269 {
270270 col_name : 'arr_type' ,
271271 data_type : 'array<string>' ,
272- comment : '' ,
272+ comment : null ,
273273 } ,
274274 {
275275 col_name : 'map_type' ,
276276 data_type : 'map<string,int>' ,
277- comment : '' ,
277+ comment : null ,
278278 } ,
279279 {
280280 col_name : 'struct_type' ,
281281 data_type : 'struct<city:string,state:string>' ,
282- comment : '' ,
282+ comment : null ,
283283 } ,
284284 ] ) ;
285285
You can’t perform that action at this time.
0 commit comments