fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 1m0s
Deploy Dev / Push (pull_request) Successful in 36s
Deploy Dev / Deploy dev (pull_request) Successful in 12s

This commit is contained in:
Egor Matveev 2025-06-13 02:39:22 +03:00
parent 4f11e508db
commit 16c24883ed

View File

@ -53,11 +53,7 @@ func connect() (*driver.Conn, error) {
}
func Migrate() error {
rows, err := Connection.Query(context.TODO(), "SELECT 1")
if err != nil {
log.Fatal("Query failed:", err)
}
rows, err = Connection.Query(
rows, err := Connection.Query(
context.TODO(),
`CREATE TABLE IF NOT EXISTS endpoints (
timestamp DateTime,
@ -65,7 +61,7 @@ func Migrate() error {
endpoint LowCardinality(String),
status_code UInt16,
response_time_ms UInt32,
request_method LowCardinality(String),
request_method LowCardinality(String)
)
ENGINE = MergeTree
PARTITION BY toYYYYMM(timestamp)