-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bind for seconds scale DateTime (#1184)
* fixing timezone problem * Add test case and fix statement generation --------- Co-authored-by: Devop- <eyupsaral.dev@gmail.com> Co-authored-by: Eyüp SARAL <127626139+Eyup-Devop@users.noreply.github.com>
- Loading branch information
1 parent
5bd511d
commit 8aac443
Showing
2 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package issues | ||
|
||
import ( | ||
"context" | ||
"testing" | ||
"time" | ||
|
||
"github.com/ClickHouse/clickhouse-go/v2" | ||
clickhouse_tests "github.com/ClickHouse/clickhouse-go/v2/tests" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func Test1169(t *testing.T) { | ||
var ( | ||
conn, err = clickhouse_tests.GetConnection("issues", clickhouse.Settings{ | ||
"max_execution_time": 60, | ||
"allow_experimental_object_type": true, | ||
}, nil, &clickhouse.Compression{ | ||
Method: clickhouse.CompressionLZ4, | ||
}) | ||
) | ||
ctx := context.Background() | ||
require.NoError(t, err) | ||
const ddl = "CREATE TABLE test_1169 (Col1 DateTime) Engine MergeTree() ORDER BY tuple()" | ||
require.NoError(t, conn.Exec(ctx, ddl)) | ||
defer func() { | ||
conn.Exec(ctx, "DROP TABLE IF EXISTS test_1169") | ||
}() | ||
|
||
location := time.FixedZone("Etc/GMT+2", -int(time.Hour*2/time.Second)) | ||
date, err := time.ParseInLocation("2006-01-02 15:04:05", "2024-01-03 11:22:33", location) | ||
require.NoError(t, err) | ||
|
||
err = conn.Exec(ctx, "INSERT INTO test_1169 (Col1) VALUES (?)", date) | ||
require.NoError(t, err) | ||
|
||
// select | ||
var actualDate time.Time | ||
err = conn.QueryRow(ctx, "SELECT Col1 FROM test_1169").Scan(&actualDate) | ||
require.NoError(t, err) | ||
require.Equal(t, actualDate.In(location), date) | ||
} |