Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0e4e126d
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看板
未验证
提交
0e4e126d
编写于
12月 04, 2020
作者:
H
huili
提交者:
GitHub
12月 04, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #4427 from taosdata/test/testcase
[TD-785]Improve the robustness of python connector
上级
c97b9682
e4dce566
变更
16
隐藏空白更改
内联
并排
Showing
16 changed file
with
25 addition
and
17 deletion
+25
-17
src/connector/python/linux/python2/setup.py
src/connector/python/linux/python2/setup.py
+1
-1
src/connector/python/linux/python2/taos/__init__.py
src/connector/python/linux/python2/taos/__init__.py
+1
-1
src/connector/python/linux/python2/taos/cinterface.py
src/connector/python/linux/python2/taos/cinterface.py
+2
-0
src/connector/python/linux/python2/taos/cursor.py
src/connector/python/linux/python2/taos/cursor.py
+2
-2
src/connector/python/linux/python3/setup.py
src/connector/python/linux/python3/setup.py
+1
-1
src/connector/python/linux/python3/taos/__init__.py
src/connector/python/linux/python3/taos/__init__.py
+2
-2
src/connector/python/linux/python3/taos/cinterface.py
src/connector/python/linux/python3/taos/cinterface.py
+2
-0
src/connector/python/linux/python3/taos/cursor.py
src/connector/python/linux/python3/taos/cursor.py
+2
-2
src/connector/python/windows/python2/setup.py
src/connector/python/windows/python2/setup.py
+1
-1
src/connector/python/windows/python2/taos/__init__.py
src/connector/python/windows/python2/taos/__init__.py
+1
-1
src/connector/python/windows/python2/taos/cinterface.py
src/connector/python/windows/python2/taos/cinterface.py
+2
-0
src/connector/python/windows/python2/taos/cursor.py
src/connector/python/windows/python2/taos/cursor.py
+2
-2
src/connector/python/windows/python3/setup.py
src/connector/python/windows/python3/setup.py
+1
-1
src/connector/python/windows/python3/taos/__init__.py
src/connector/python/windows/python3/taos/__init__.py
+1
-1
src/connector/python/windows/python3/taos/cinterface.py
src/connector/python/windows/python3/taos/cinterface.py
+2
-0
src/connector/python/windows/python3/taos/cursor.py
src/connector/python/windows/python3/taos/cursor.py
+2
-2
未找到文件。
src/connector/python/linux/python2/setup.py
浏览文件 @
0e4e126d
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
name
=
"taos"
,
version
=
"2.0.
2
"
,
version
=
"2.0.
3
"
,
author
=
"Taosdata Inc."
,
author_email
=
"support@taosdata.com"
,
description
=
"TDengine python client package"
,
...
...
src/connector/python/linux/python2/taos/__init__.py
浏览文件 @
0e4e126d
...
...
@@ -3,7 +3,7 @@ from .connection import TDengineConnection
from
.cursor
import
TDengineCursor
# Globals
apilevel
=
'2.0'
apilevel
=
'2.0
.3
'
threadsafety
=
0
paramstyle
=
'pyformat'
...
...
src/connector/python/linux/python2/taos/cinterface.py
浏览文件 @
0e4e126d
...
...
@@ -81,6 +81,7 @@ def _crow_double_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
if
num_of_rows
>
0
:
return
[
None
if
ele
.
value
[
0
:
1
]
==
FieldType
.
C_BINARY_NULL
else
ele
.
value
.
decode
(
'utf-8'
)
for
ele
in
(
ctypes
.
cast
(
data
,
ctypes
.
POINTER
(
ctypes
.
c_char
*
nbytes
)))[:
abs
(
num_of_rows
)]]
else
:
...
...
@@ -106,6 +107,7 @@ def _crow_nchar_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python_block
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
res
=
[]
if
num_of_rows
>
0
:
for
i
in
range
(
abs
(
num_of_rows
)):
...
...
src/connector/python/linux/python2/taos/cursor.py
浏览文件 @
0e4e126d
...
...
@@ -26,7 +26,7 @@ class TDengineCursor(object):
"""
def
__init__
(
self
,
connection
=
None
):
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
self
.
_connection
=
None
self
.
_result
=
None
...
...
@@ -234,7 +234,7 @@ class TDengineCursor(object):
def
_reset_result
(
self
):
"""Reset the result to unused version.
"""
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
if
self
.
_result
is
not
None
:
CTaosInterface
.
freeResult
(
self
.
_result
)
...
...
src/connector/python/linux/python3/setup.py
浏览文件 @
0e4e126d
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
name
=
"taos"
,
version
=
"2.0.
2
"
,
version
=
"2.0.
3
"
,
author
=
"Taosdata Inc."
,
author_email
=
"support@taosdata.com"
,
description
=
"TDengine python client package"
,
...
...
src/connector/python/linux/python3/taos/__init__.py
浏览文件 @
0e4e126d
...
...
@@ -3,7 +3,7 @@ from .connection import TDengineConnection
from
.cursor
import
TDengineCursor
# Globals
apilevel
=
'2.0'
apilevel
=
'2.0
.3
'
threadsafety
=
0
paramstyle
=
'pyformat'
...
...
@@ -21,4 +21,4 @@ def connect(*args, **kwargs):
@rtype: TDengineConnector
"""
return
TDengineConnection
(
*
args
,
**
kwargs
)
\ No newline at end of file
return
TDengineConnection
(
*
args
,
**
kwargs
)
src/connector/python/linux/python3/taos/cinterface.py
浏览文件 @
0e4e126d
...
...
@@ -81,6 +81,7 @@ def _crow_double_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
if
num_of_rows
>
0
:
return
[
None
if
ele
.
value
[
0
:
1
]
==
FieldType
.
C_BINARY_NULL
else
ele
.
value
.
decode
(
'utf-8'
)
for
ele
in
(
ctypes
.
cast
(
data
,
ctypes
.
POINTER
(
ctypes
.
c_char
*
nbytes
)))[:
abs
(
num_of_rows
)]]
else
:
...
...
@@ -106,6 +107,7 @@ def _crow_nchar_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python_block
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
res
=
[]
if
num_of_rows
>
0
:
for
i
in
range
(
abs
(
num_of_rows
)):
...
...
src/connector/python/linux/python3/taos/cursor.py
浏览文件 @
0e4e126d
...
...
@@ -27,7 +27,7 @@ class TDengineCursor(object):
"""
def
__init__
(
self
,
connection
=
None
):
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
self
.
_connection
=
None
self
.
_result
=
None
...
...
@@ -242,7 +242,7 @@ class TDengineCursor(object):
def
_reset_result
(
self
):
"""Reset the result to unused version.
"""
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
if
self
.
_result
is
not
None
:
CTaosInterface
.
freeResult
(
self
.
_result
)
...
...
src/connector/python/windows/python2/setup.py
浏览文件 @
0e4e126d
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
name
=
"taos"
,
version
=
"2.0.
2
"
,
version
=
"2.0.
3
"
,
author
=
"Taosdata Inc."
,
author_email
=
"support@taosdata.com"
,
description
=
"TDengine python client package"
,
...
...
src/connector/python/windows/python2/taos/__init__.py
浏览文件 @
0e4e126d
...
...
@@ -3,7 +3,7 @@ from .connection import TDengineConnection
from
.cursor
import
TDengineCursor
# Globals
apilevel
=
'2.0'
apilevel
=
'2.0
.3
'
threadsafety
=
0
paramstyle
=
'pyformat'
...
...
src/connector/python/windows/python2/taos/cinterface.py
浏览文件 @
0e4e126d
...
...
@@ -81,6 +81,7 @@ def _crow_double_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
if
num_of_rows
>
0
:
return
[
None
if
ele
.
value
[
0
:
1
]
==
FieldType
.
C_BINARY_NULL
else
ele
.
value
.
decode
(
'utf-8'
)
for
ele
in
(
ctypes
.
cast
(
data
,
ctypes
.
POINTER
(
ctypes
.
c_char
*
nbytes
)))[:
abs
(
num_of_rows
)]]
else
:
...
...
@@ -106,6 +107,7 @@ def _crow_nchar_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python_block
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
res
=
[]
if
num_of_rows
>
0
:
for
i
in
range
(
abs
(
num_of_rows
)):
...
...
src/connector/python/windows/python2/taos/cursor.py
浏览文件 @
0e4e126d
...
...
@@ -27,7 +27,7 @@ class TDengineCursor(object):
"""
def
__init__
(
self
,
connection
=
None
):
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
self
.
_connection
=
None
self
.
_result
=
None
...
...
@@ -193,7 +193,7 @@ class TDengineCursor(object):
def
_reset_result
(
self
):
"""Reset the result to unused version.
"""
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
if
self
.
_result
is
not
None
:
CTaosInterface
.
freeResult
(
self
.
_result
)
...
...
src/connector/python/windows/python3/setup.py
浏览文件 @
0e4e126d
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
name
=
"taos"
,
version
=
"2.0.
2
"
,
version
=
"2.0.
3
"
,
author
=
"Taosdata Inc."
,
author_email
=
"support@taosdata.com"
,
description
=
"TDengine python client package"
,
...
...
src/connector/python/windows/python3/taos/__init__.py
浏览文件 @
0e4e126d
...
...
@@ -3,7 +3,7 @@ from .connection import TDengineConnection
from
.cursor
import
TDengineCursor
# Globals
apilevel
=
'2.0'
apilevel
=
'2.0
.3
'
threadsafety
=
0
paramstyle
=
'pyformat'
...
...
src/connector/python/windows/python3/taos/cinterface.py
浏览文件 @
0e4e126d
...
...
@@ -81,6 +81,7 @@ def _crow_double_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
if
num_of_rows
>
0
:
return
[
None
if
ele
.
value
[
0
:
1
]
==
FieldType
.
C_BINARY_NULL
else
ele
.
value
.
decode
(
'utf-8'
)
for
ele
in
(
ctypes
.
cast
(
data
,
ctypes
.
POINTER
(
ctypes
.
c_char
*
nbytes
)))[:
abs
(
num_of_rows
)]]
else
:
...
...
@@ -108,6 +109,7 @@ def _crow_nchar_to_python(data, num_of_rows, nbytes=None, micro=False):
def
_crow_binary_to_python_block
(
data
,
num_of_rows
,
nbytes
=
None
,
micro
=
False
):
"""Function to convert C binary row to python row
"""
assert
(
nbytes
is
not
None
)
res
=
[]
if
num_of_rows
>
0
:
for
i
in
range
(
abs
(
num_of_rows
)):
...
...
src/connector/python/windows/python3/taos/cursor.py
浏览文件 @
0e4e126d
...
...
@@ -28,7 +28,7 @@ class TDengineCursor(object):
"""
def
__init__
(
self
,
connection
=
None
):
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
self
.
_connection
=
None
self
.
_result
=
None
...
...
@@ -194,7 +194,7 @@ class TDengineCursor(object):
def
_reset_result
(
self
):
"""Reset the result to unused version.
"""
self
.
_description
=
None
self
.
_description
=
[]
self
.
_rowcount
=
-
1
if
self
.
_result
is
not
None
:
CTaosInterface
.
freeResult
(
self
.
_result
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录