Skip to content

Commit

Permalink
Merge pull request #82 from vijeyash1/main
Browse files Browse the repository at this point in the history
patch for datatime overflow error
  • Loading branch information
jebinjeb authored Jul 11, 2023
2 parents b5c9c86 + 2764414 commit 4c3a313
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/pkg/clickhouse/statements.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const kubvizTable DBStatement = `
CREATE TABLE IF NOT EXISTS events (
ClusterName String,
Id String,
EventTime DateTime,
EventTime DateTime64,
OpType String,
Name String,
Namespace String,
Expand All @@ -15,8 +15,8 @@ const kubvizTable DBStatement = `
Reason String,
Host String,
Event String,
FirstTime DateTime,
LastTime DateTime
FirstTime DateTime64,
LastTime DateTime64
) engine=File(TabSeparated)
`
const rakeesTable DBStatement = `
Expand Down

0 comments on commit 4c3a313

Please sign in to comment.