Skip to content

Commit cba1c7d

Browse files
committed
finish
1 parent d66e01a commit cba1c7d

32 files changed

+201
-83
lines changed

.github/workflows/cluster-it-1c1d1a.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ jobs:
4141

4242
steps:
4343
- uses: actions/checkout@v4
44-
- name: Build AINode
45-
shell: bash
46-
run: mvn clean package -DskipTests -P with-ainode
4744
- name: IT Test
4845
shell: bash
4946
run: |

iotdb-core/ainode/iotdb/sqlalchemy/IoTDBSQLCompiler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
# under the License.
1717
#
1818

19-
from sqlalchemy.sql.compiler import SQLCompiler
20-
from sqlalchemy.sql.compiler import OPERATORS
2119
from sqlalchemy.sql import operators
20+
from sqlalchemy.sql.compiler import OPERATORS, SQLCompiler
2221

2322

2423
class IoTDBSQLCompiler(SQLCompiler):

iotdb-core/ainode/iotdb/template/MeasurementNode.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
#
1818
import warnings
1919

20-
from iotdb.utils.IoTDBConstants import TSDataType, TSEncoding, Compressor
21-
from .TemplateNode import TemplateNode
20+
from iotdb.utils.IoTDBConstants import Compressor, TSDataType, TSEncoding
21+
2222
from ..tsfile.utils.read_write_io_utils import ReadWriteUtils
23+
from .TemplateNode import TemplateNode
2324

2425
warnings.simplefilter("always", DeprecationWarning)
2526

iotdb-core/ainode/iotdb/template/Template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
import struct
2020
import warnings
2121

22-
from .TemplateNode import TemplateNode
2322
from ..tsfile.common.constant.tsfile_constant import TsFileConstant
2423
from ..tsfile.utils.pair import Pair
2524
from ..tsfile.utils.read_write_io_utils import ReadWriteUtils
25+
from .TemplateNode import TemplateNode
2626

2727
warnings.simplefilter("always", DeprecationWarning)
2828

iotdb-core/ainode/iotdb/thrift/ainode/IAINodeRPCService-remote

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@
77
# options string: py
88
#
99

10-
import sys
1110
import pprint
11+
import sys
12+
1213
if sys.version_info[0] > 2:
1314
from urllib.parse import urlparse
1415
else:
1516
from urlparse import urlparse
16-
from thrift.transport import TTransport, TSocket, TSSLSocket, THttpClient
17+
1718
from thrift.protocol.TBinaryProtocol import TBinaryProtocol
19+
from thrift.transport import THttpClient, TSocket, TSSLSocket, TTransport
1820

1921
from iotdb.thrift.ainode import IAINodeRPCService
2022
from iotdb.thrift.ainode.ttypes import *

iotdb-core/ainode/iotdb/thrift/ainode/IAINodeRPCService.py

Lines changed: 13 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iotdb-core/ainode/iotdb/thrift/ainode/constants.py

Lines changed: 9 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iotdb-core/ainode/iotdb/thrift/ainode/ttypes.py

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iotdb-core/ainode/iotdb/thrift/common/constants.py

Lines changed: 9 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iotdb-core/ainode/iotdb/thrift/common/ttypes.py

Lines changed: 10 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)