Skip to content

Commit 981a66d

Browse files
fix: update data type from Int64 to Float64 (#88)
1 parent a62255c commit 981a66d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

model.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ const FlogJsonSchema string = `{
163163
"fields": [
164164
{
165165
"name": "bytes",
166-
"data_type": "Int64",
166+
"data_type": "Float64",
167167
"nullable": true,
168168
"dict_id": 0,
169169
"dict_is_ordered": false,
@@ -248,7 +248,7 @@ const FlogJsonSchema string = `{
248248
},
249249
{
250250
"name": "status",
251-
"data_type": "Int64",
251+
"data_type": "Float64",
252252
"nullable": true,
253253
"dict_id": 0,
254254
"dict_is_ordered": false,
@@ -278,7 +278,7 @@ const SchemaBody string = `{
278278
},
279279
{
280280
"name": "device_id",
281-
"data_type": "Int64",
281+
"data_type": "Float64",
282282
"nullable": true,
283283
"dict_id": 0,
284284
"dict_is_ordered": false,
@@ -355,7 +355,7 @@ const SchemaBody string = `{
355355
},
356356
{
357357
"name": "process_id",
358-
"data_type": "Int64",
358+
"data_type": "Float64",
359359
"nullable": true,
360360
"dict_id": 0,
361361
"dict_is_ordered": false,
@@ -371,7 +371,7 @@ const SchemaBody string = `{
371371
},
372372
{
373373
"name": "response_time",
374-
"data_type": "Int64",
374+
"data_type": "Float64",
375375
"nullable": true,
376376
"dict_id": 0,
377377
"dict_is_ordered": false,
@@ -408,7 +408,7 @@ const SchemaBody string = `{
408408
},
409409
{
410410
"name": "status_code",
411-
"data_type": "Int64",
411+
"data_type": "Float64",
412412
"nullable": true,
413413
"dict_id": 0,
414414
"dict_is_ordered": false,
@@ -432,7 +432,7 @@ const SchemaBody string = `{
432432
},
433433
{
434434
"name": "user_id",
435-
"data_type": "Int64",
435+
"data_type": "Float64",
436436
"nullable": true,
437437
"dict_id": 0,
438438
"dict_is_ordered": false,

0 commit comments

Comments
 (0)