Skip to content

Commit

Permalink
Int64 updated to Float64 in schemas (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsinhaparseable authored Dec 8, 2024
1 parent 7a429e3 commit d5189cd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions model.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const FlogJsonSchema string = `{
"fields": [
{
"name": "bytes",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand Down Expand Up @@ -248,7 +248,7 @@ const FlogJsonSchema string = `{
},
{
"name": "status",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand Down Expand Up @@ -278,7 +278,7 @@ const SchemaBody string = `{
},
{
"name": "device_id",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand Down Expand Up @@ -355,7 +355,7 @@ const SchemaBody string = `{
},
{
"name": "process_id",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand All @@ -371,7 +371,7 @@ const SchemaBody string = `{
},
{
"name": "response_time",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand Down Expand Up @@ -408,7 +408,7 @@ const SchemaBody string = `{
},
{
"name": "status_code",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand All @@ -432,7 +432,7 @@ const SchemaBody string = `{
},
{
"name": "user_id",
"data_type": "Int64",
"data_type": "Float64",
"nullable": true,
"dict_id": 0,
"dict_is_ordered": false,
Expand Down

0 comments on commit d5189cd

Please sign in to comment.