Merge pull request #1107 from taosdata/feature/lihui

[#1096]
This commit is contained in:
fangpanpan 2020-01-09 10:44:38 +08:00 committed by GitHub
commit 2afef97fe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -292,8 +292,8 @@ int32_t parseLocaltime(char* timestr, int64_t* time, int32_t timePrec) {
} }
/* mktime will be affected by TZ, set by using taos_options */ /* mktime will be affected by TZ, set by using taos_options */
int64_t seconds = mktime(&tm); //int64_t seconds = mktime(&tm);
//int64_t seconds = (int64_t)user_mktime(&tm); int64_t seconds = (int64_t)user_mktime(&tm);
int64_t fraction = 0; int64_t fraction = 0;