Skip to content

Commit 23f9e4e

Browse files
authored
Add time import to ClickHouse storage module (#76)
### TL;DR Added time package import to clickhouse.go file. ### What changed? The `time` package from the Go standard library has been imported in the `internal/storage/clickhouse.go` file. ### How to test? No specific testing is required for this change as it's an import addition. However, ensure that the build process completes successfully and that any existing tests pass without errors. ### Why make this change? The addition of the `time` package import suggests that time-related functionality will be used in the clickhouse storage implementation. This could be for handling timestamps, durations, or other time-based operations within the storage layer.
2 parents e21aaff + 8d909e4 commit 23f9e4e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/storage/clickhouse.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"fmt"
88
"math/big"
99
"strings"
10+
"time"
1011

1112
"github.com/ClickHouse/clickhouse-go/v2"
1213
"github.com/ClickHouse/clickhouse-go/v2/lib/driver"

0 commit comments

Comments
 (0)