Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
dafdf1cb
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
dafdf1cb
编写于
5月 10, 2022
作者:
R
Raistlin Chan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(driver): update copoyright info
上级
9a1db8d9
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
10 addition
and
10 deletion
+10
-10
src/client/src/taos.rc.in
src/client/src/taos.rc.in
+1
-1
src/connector/odbc/src/todbc.rc.in
src/connector/odbc/src/todbc.rc.in
+1
-1
src/kit/shell/src/shellDarwin.c
src/kit/shell/src/shellDarwin.c
+2
-2
src/kit/shell/src/shellEngine.c
src/kit/shell/src/shellEngine.c
+2
-2
src/kit/shell/src/shellLinux.c
src/kit/shell/src/shellLinux.c
+2
-2
src/kit/shell/src/shellWindows.c
src/kit/shell/src/shellWindows.c
+2
-2
未找到文件。
src/client/src/taos.rc.in
浏览文件 @
dafdf1cb
...
...
@@ -18,7 +18,7 @@ BEGIN
VALUE "FileDescription", "Native C Driver for TDengine"
VALUE "FileVersion", "${TD_VER_NUMBER}"
VALUE "InternalName", "taos.dll(${TD_VER_CPUTYPE})"
VALUE "LegalCopyright", "Copyright (C) 202
0
TAOS Data"
VALUE "LegalCopyright", "Copyright (C) 202
2
TAOS Data"
VALUE "OriginalFilename", ""
VALUE "ProductName", "taos.dll(${TD_VER_CPUTYPE})"
VALUE "ProductVersion", "${TD_VER_NUMBER}"
...
...
src/connector/odbc/src/todbc.rc.in
浏览文件 @
dafdf1cb
...
...
@@ -18,7 +18,7 @@ BEGIN
VALUE "FileDescription", "ODBC Driver for TDengine"
VALUE "FileVersion", "${TD_VER_NUMBER}"
VALUE "InternalName", "todbc.dll(${TD_VER_CPUTYPE})"
VALUE "LegalCopyright", "Copyright (C) 202
0
TAOS Data"
VALUE "LegalCopyright", "Copyright (C) 202
2
TAOS Data"
VALUE "OriginalFilename", ""
VALUE "ProductName", "todbc.dll(${TD_VER_CPUTYPE})"
VALUE "ProductVersion", "${TD_VER_NUMBER}"
...
...
src/kit/shell/src/shellDarwin.c
浏览文件 @
dafdf1cb
/*
* Copyright (c) 20
19
TAOS Data, Inc. <jhtao@taosdata.com>
* Copyright (c) 20
22
TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
...
...
@@ -65,7 +65,7 @@ void printHelp() {
}
char
DARWINCLIENT_VERSION
[]
=
"Welcome to the TDengine shell from %s, Client Version:%s
\n
"
"Copyright (c) 202
0
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
"Copyright (c) 202
2
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
char
g_password
[
SHELL_MAX_PASSWORD_LEN
];
void
shellParseArgument
(
int
argc
,
char
*
argv
[],
SShellArguments
*
arguments
)
{
...
...
src/kit/shell/src/shellEngine.c
浏览文件 @
dafdf1cb
/*
* Copyright (c) 20
19
TAOS Data, Inc. <jhtao@taosdata.com>
* Copyright (c) 20
22
TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
...
...
@@ -31,7 +31,7 @@
/**************** Global variables ****************/
char
CLIENT_VERSION
[]
=
"Welcome to the TDengine shell from %s, Client Version:%s
\n
"
"Copyright (c) 202
0
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
"Copyright (c) 202
2
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
char
PROMPT_HEADER
[]
=
"taos> "
;
char
CONTINUE_PROMPT
[]
=
" -> "
;
int
prompt_size
=
6
;
...
...
src/kit/shell/src/shellLinux.c
浏览文件 @
dafdf1cb
/*
* Copyright (c) 20
19
TAOS Data, Inc. <jhtao@taosdata.com>
* Copyright (c) 20
22
TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
...
...
@@ -172,7 +172,7 @@ static error_t parse_opt(int key, char *arg, struct argp_state *state) {
static
struct
argp
argp
=
{
options
,
parse_opt
,
args_doc
,
doc
};
char
LINUXCLIENT_VERSION
[]
=
"Welcome to the TDengine shell from %s, Client Version:%s
\n
"
"Copyright (c) 202
0
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
"Copyright (c) 202
2
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
char
g_password
[
SHELL_MAX_PASSWORD_LEN
];
static
void
parse_args
(
...
...
src/kit/shell/src/shellWindows.c
浏览文件 @
dafdf1cb
/*******************************************************************
* Copyright (c) 20
17
by TAOS Technologies, Inc.
* Copyright (c) 20
22
by TAOS Technologies, Inc.
* All rights reserved.
*
* This file is proprietary and confidential to TAOS Technologies.
...
...
@@ -22,7 +22,7 @@
extern
char
configDir
[];
char
WINCLIENT_VERSION
[]
=
"Welcome to the TDengine shell from %s, Client Version:%s
\n
"
"Copyright (c) 202
0
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
"Copyright (c) 202
2
by TAOS Data, Inc. All rights reserved.
\n\n
"
;
void
printVersion
()
{
printf
(
"version: %s
\n
"
,
version
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录