Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
0d2eb1bf
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0d2eb1bf
编写于
11月 15, 2019
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TBASE-1155]
上级
6e14f9dc
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
21 addition
and
28 deletion
+21
-28
src/os/darwin/src/tdarwin.c
src/os/darwin/src/tdarwin.c
+0
-4
src/os/linux/src/tsystem.c
src/os/linux/src/tsystem.c
+0
-19
src/os/windows/src/twindows.c
src/os/windows/src/twindows.c
+0
-4
src/system/src/vnodeImport.c
src/system/src/vnodeImport.c
+2
-1
src/util/src/tutil.c
src/util/src/tutil.c
+19
-0
未找到文件。
src/os/darwin/src/tdarwin.c
浏览文件 @
0d2eb1bf
...
@@ -243,10 +243,6 @@ int taosInitTimer(void (*callback)(int), int ms) {
...
@@ -243,10 +243,6 @@ int taosInitTimer(void (*callback)(int), int ms) {
return
setitimer
(
ITIMER_REAL
,
&
tv
,
NULL
);
return
setitimer
(
ITIMER_REAL
,
&
tv
,
NULL
);
}
}
char
*
taosCharsetReplace
(
char
*
charsetstr
)
{
return
charsetstr
;
}
void
taosGetSystemTimezone
()
{
void
taosGetSystemTimezone
()
{
// get and set default timezone
// get and set default timezone
SGlobalConfig
*
cfg_timezone
=
tsGetConfigOption
(
"timezone"
);
SGlobalConfig
*
cfg_timezone
=
tsGetConfigOption
(
"timezone"
);
...
...
src/os/linux/src/tsystem.c
浏览文件 @
0d2eb1bf
...
@@ -210,25 +210,6 @@ void taosGetSystemTimezone() {
...
@@ -210,25 +210,6 @@ void taosGetSystemTimezone() {
pPrint
(
"timezone not configured, set to system default:%s"
,
tsTimezone
);
pPrint
(
"timezone not configured, set to system default:%s"
,
tsTimezone
);
}
}
typedef
struct
CharsetPair
{
char
*
oldCharset
;
char
*
newCharset
;
}
CharsetPair
;
char
*
taosCharsetReplace
(
char
*
charsetstr
)
{
CharsetPair
charsetRep
[]
=
{
{
"utf8"
,
"UTF-8"
},
{
"936"
,
"CP936"
},
};
for
(
int32_t
i
=
0
;
i
<
tListLen
(
charsetRep
);
++
i
)
{
if
(
strcasecmp
(
charsetRep
[
i
].
oldCharset
,
charsetstr
)
==
0
)
{
return
strdup
(
charsetRep
[
i
].
newCharset
);
}
}
return
strdup
(
charsetstr
);
}
/*
/*
* POSIX format locale string:
* POSIX format locale string:
* (Language Strings)_(Country/Region Strings).(code_page)
* (Language Strings)_(Country/Region Strings).(code_page)
...
...
src/os/windows/src/twindows.c
浏览文件 @
0d2eb1bf
...
@@ -96,10 +96,6 @@ void __sync_val_restore_32(int32_t *ptr, int32_t newval) {
...
@@ -96,10 +96,6 @@ void __sync_val_restore_32(int32_t *ptr, int32_t newval) {
void
tsPrintOsInfo
()
{}
void
tsPrintOsInfo
()
{}
char
*
taosCharsetReplace
(
char
*
charsetstr
)
{
return
charsetstr
;
}
void
taosGetSystemTimezone
()
{
void
taosGetSystemTimezone
()
{
// get and set default timezone
// get and set default timezone
SGlobalConfig
*
cfg_timezone
=
tsGetConfigOption
(
"timezone"
);
SGlobalConfig
*
cfg_timezone
=
tsGetConfigOption
(
"timezone"
);
...
...
src/system/src/vnodeImport.c
浏览文件 @
0d2eb1bf
...
@@ -546,6 +546,7 @@ int vnodeImportToCache(SImportInfo *pImport, char *payload, int rows) {
...
@@ -546,6 +546,7 @@ int vnodeImportToCache(SImportInfo *pImport, char *payload, int rows) {
return
code
;
return
code
;
}
}
assert
(
rows
);
dTrace
(
"vid:%d sid:%d id:%s, %d rows data will be imported to cache, firstKey:%ld lastKey:%ld"
,
dTrace
(
"vid:%d sid:%d id:%s, %d rows data will be imported to cache, firstKey:%ld lastKey:%ld"
,
pObj
->
vnode
,
pObj
->
sid
,
pObj
->
meterId
,
rows
,
firstKey
,
lastKey
);
pObj
->
vnode
,
pObj
->
sid
,
pObj
->
meterId
,
rows
,
firstKey
,
lastKey
);
...
@@ -781,7 +782,7 @@ int vnodeImportStartToCache(SImportInfo *pImport, char *payload, int rows) {
...
@@ -781,7 +782,7 @@ int vnodeImportStartToCache(SImportInfo *pImport, char *payload, int rows) {
pImport
->
importedRows
=
rows
;
pImport
->
importedRows
=
rows
;
code
=
vnodeImportToCache
(
pImport
,
payload
,
rows
);
code
=
vnodeImportToCache
(
pImport
,
payload
,
rows
);
}
else
{
}
else
{
dTrace
(
"vid:%d sid:%d id:%s, data is already imported to cache
"
,
pObj
->
vnode
,
pObj
->
sid
,
pObj
->
meterId
);
dTrace
(
"vid:%d sid:%d id:%s, data is already imported to cache
, firstKey:%lld"
,
pObj
->
vnode
,
pObj
->
sid
,
pObj
->
meterId
,
pImport
->
firstKey
);
}
}
return
code
;
return
code
;
...
...
src/util/src/tutil.c
浏览文件 @
0d2eb1bf
...
@@ -508,3 +508,22 @@ char *taosIpStr(int ipInt) {
...
@@ -508,3 +508,22 @@ char *taosIpStr(int ipInt) {
sprintf
(
ipStr
,
"0x%x:%d.%d.%d.%d"
,
ipInt
,
ipInt
&
0xFF
,
(
ipInt
>>
8
)
&
0xFF
,
(
ipInt
>>
16
)
&
0xFF
,
ipInt
>>
24
);
sprintf
(
ipStr
,
"0x%x:%d.%d.%d.%d"
,
ipInt
,
ipInt
&
0xFF
,
(
ipInt
>>
8
)
&
0xFF
,
(
ipInt
>>
16
)
&
0xFF
,
ipInt
>>
24
);
return
ipStr
;
return
ipStr
;
}
}
typedef
struct
CharsetPair
{
char
*
oldCharset
;
char
*
newCharset
;
}
CharsetPair
;
char
*
taosCharsetReplace
(
char
*
charsetstr
)
{
CharsetPair
charsetRep
[]
=
{
{
"utf8"
,
"UTF-8"
},
{
"936"
,
"CP936"
},
};
for
(
int32_t
i
=
0
;
i
<
tListLen
(
charsetRep
);
++
i
)
{
if
(
strcasecmp
(
charsetRep
[
i
].
oldCharset
,
charsetstr
)
==
0
)
{
return
strdup
(
charsetRep
[
i
].
newCharset
);
}
}
return
strdup
(
charsetstr
);
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录