-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add time type arg support #20
Comments
Can't you pass it as string?
|
@minor yes, we can use
Instead of
|
Add time.Time type convert to clickHouse Date type #20 issue
Accepted pull request actually makes things worse, because instead of converting time to DateTime it converts to Date, losing time part. |
Moreover, accepted pull request marshals time as unquoted string, which is wrong. |
Now arg of type time in query function args will be replaced with ''
eg
clickhouse.NewQuery("Select * From event Where time > ?", time.Now())
will fail
The text was updated successfully, but these errors were encountered: