put taosGetTimestampSec in osTime

This commit is contained in:
Liu Jicong 2021-10-12 16:30:40 +08:00
parent 59de14eaa4
commit 2d8aadff21
2 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,6 @@ static int32_t (*parseLocaltimeFp[]) (char* timestr, int64_t* time, int32_t time
parseLocaltimeWithDst
};
int32_t taosGetTimestampSec() { return (int32_t)time(NULL); }
int32_t taosParseTime(char* timestr, int64_t* time, int32_t len, int32_t timePrec, int8_t day_light) {
/* parse datatime string in with tz */
if (strnchr(timestr, 'T', len, false) != NULL) {

View File

@ -63,4 +63,6 @@ FORCE_INLINE int32_t taosGetTimeOfDay(struct timeval *tv) {
return gettimeofday(tv, NULL);
}
int32_t taosGetTimestampSec() { return (int32_t)time(NULL); }
#endif