Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
faca8084
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1185
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
faca8084
编写于
12月 01, 2019
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
resolve conflicts
上级
6a3b8379
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
0 addition
and
1010 deletion
+0
-1010
src/os/windows/src/twindows.c
src/os/windows/src/twindows.c
+0
-3
src/system/src/vnodeImport.c
src/system/src/vnodeImport.c
+0
-985
src/util/src/tutil.c
src/util/src/tutil.c
+0
-22
未找到文件。
src/os/windows/src/twindows.c
浏览文件 @
faca8084
...
...
@@ -132,8 +132,6 @@ short interlocked_or_fetch_16(short volatile* ptr, short val) {
return
_InterlockedOr16
(
ptr
,
val
)
|
val
;
}
<<<<<<<
HEAD
=======
long
interlocked_or_fetch_32
(
long
volatile
*
ptr
,
long
val
)
{
return
_InterlockedOr
(
ptr
,
val
)
|
val
;
}
...
...
@@ -207,7 +205,6 @@ __int64 interlocked_fetch_xor_64(__int64 volatile* ptr, __int64 val) {
void
tsPrintOsInfo
()
{}
>>>>>>>
release
/
v1
.
6
.
4
.
0
void
taosGetSystemTimezone
()
{
// get and set default timezone
SGlobalConfig
*
cfg_timezone
=
tsGetConfigOption
(
"timezone"
);
...
...
src/system/src/vnodeImport.c
已删除
100644 → 0
浏览文件 @
6a3b8379
此差异已折叠。
点击以展开。
src/util/src/tutil.c
浏览文件 @
faca8084
...
...
@@ -493,27 +493,6 @@ char *taosIpStr(uint32_t ipInt) {
sprintf
(
ipStr
,
"0x%x:%u.%u.%u.%u"
,
ipInt
,
ipInt
&
0xFF
,
(
ipInt
>>
8
)
&
0xFF
,
(
ipInt
>>
16
)
&
0xFF
,
(
uint8_t
)(
ipInt
>>
24
));
return
ipStr
;
}
<<<<<<<
HEAD
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
);
}
=======
#ifndef CLUSTER
void
taosCleanupTier
()
{}
...
...
@@ -549,4 +528,3 @@ char *taosCharsetReplace(char *charsetstr) {
return
strdup
(
charsetstr
);
}
>>>>>>>
release
/
v1
.
6
.
4
.
0
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录