diff --git a/pydbapi/__init__.py b/pydbapi/__init__.py index dd70358..1a49c3d 100644 --- a/pydbapi/__init__.py +++ b/pydbapi/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- # @Author: chunyang.xu # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:20:31 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:35:31 # @github: https://github.com/longfengpili + import os import logging.config from pydbapi.conf.logconf import LOGGING_CONFIG diff --git a/pydbapi/api/__init__.py b/pydbapi/api/__init__.py index cbe881e..535dd24 100644 --- a/pydbapi/api/__init__.py +++ b/pydbapi/api/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 17:49:13 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:31:46 # @github: https://github.com/longfengpili + from .redshift import RedshiftDB, SqlRedshiftCompile from .sqlite import SqliteDB, SqliteCompile from .mysql import MysqlDB, SqlMysqlCompile diff --git a/pydbapi/api/mysql.py b/pydbapi/api/mysql.py index d665da0..0080724 100644 --- a/pydbapi/api/mysql.py +++ b/pydbapi/api/mysql.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 17:49:58 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:31:52 # @github: https://github.com/longfengpili + import re import threading import pymysql diff --git a/pydbapi/api/redshift.py b/pydbapi/api/redshift.py index e1f8283..1ef3d32 100644 --- a/pydbapi/api/redshift.py +++ b/pydbapi/api/redshift.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 17:50:05 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:32:58 # @github: https://github.com/longfengpili + import threading import psycopg2 diff --git a/pydbapi/api/snowflake.py b/pydbapi/api/snowflake.py index 4f126e0..f1c9d5f 100644 --- a/pydbapi/api/snowflake.py +++ b/pydbapi/api/snowflake.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:05:45 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:33:01 # @github: https://github.com/longfengpili + # import threading # import snowflake.connector diff --git a/pydbapi/api/sqlite.py b/pydbapi/api/sqlite.py index b73c6a5..3f44cf1 100644 --- a/pydbapi/api/sqlite.py +++ b/pydbapi/api/sqlite.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:04:44 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:32:24 # @github: https://github.com/longfengpili + import os import threading import sqlite3 diff --git a/pydbapi/api/trino.py b/pydbapi/api/trino.py index fbd9aa9..aa83123 100644 --- a/pydbapi/api/trino.py +++ b/pydbapi/api/trino.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:04:50 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:33:08 # @github: https://github.com/longfengpili + import re import tqdm import pandas as pd diff --git a/pydbapi/col/__init__.py b/pydbapi/col/__init__.py index 61865e0..aeec7a7 100644 --- a/pydbapi/col/__init__.py +++ b/pydbapi/col/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:04:59 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:33:34 # @github: https://github.com/longfengpili + from .colmodel import ColumnModel, ColumnsModel __all__ = ['ColumnModel', 'ColumnsModel'] diff --git a/pydbapi/col/colmodel.py b/pydbapi/col/colmodel.py index 12a7783..3a9dada 100644 --- a/pydbapi/col/colmodel.py +++ b/pydbapi/col/colmodel.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:05:10 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:33:37 # @github: https://github.com/longfengpili + class ColumnModel(object): def __init__(self, newname, coltype='varchar', sqlexpr=None, func=None, order=0, desc=None): diff --git a/pydbapi/conf/__init__.py b/pydbapi/conf/__init__.py index 19872b0..0e717ff 100644 --- a/pydbapi/conf/__init__.py +++ b/pydbapi/conf/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:05:23 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:34:08 # @github: https://github.com/longfengpili + from .myhandlers import MakeFileHandler from .logconf import * diff --git a/pydbapi/conf/logconf.py b/pydbapi/conf/logconf.py index bf0574c..1f7c80f 100644 --- a/pydbapi/conf/logconf.py +++ b/pydbapi/conf/logconf.py @@ -1,11 +1,10 @@ -# @Author: chunyang.xu -# @Email: 398745129@qq.com -# @Date: 2020-06-10 14:14:53 -# @Last Modified time: 2022-08-11 11:56:34 +# -*- coding: utf-8 -*- +# @Author: longfengpili +# @Date: 2023-07-26 17:46:27 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:38:28 # @github: https://github.com/longfengpili -# !/usr/bin/env python3 -# -*- coding:utf-8 -*- import re import os @@ -17,8 +16,10 @@ # logging settings USERPATH = os.environ['USERPROFILE'] if 'USERPROFILE' in os.environ else os.environ['HOME'] if 'HOME' in os.environ else '' -LOG_BASE_PATH = os.path.join(USERPATH, '.pydbapilog') # 可以user目录下查看日志 +LOG_BASE_PATH = os.path.join(USERPATH, 'snapilog') # 可以user目录下查看日志 PROJECT_NAME = re.sub(':?\\\\', '_', os.getcwd()) +PROJECT_NAME = PROJECT_NAME[1:] if PROJECT_NAME.startswith('/') else PROJECT_NAME # linux + LOGGING_CONFIG = { 'version': 1, # 保留字 'disable_existing_loggers': False, # 禁用已经存在的logger实例 @@ -62,7 +63,7 @@ 'level': 'DEBUG', 'filters': [], 'class': 'logging.StreamHandler', # - 'formatter': 'color' if sys.stdout.isatty() else 'simple' + 'formatter': 'color' if sys.stdout.isatty() or any("jupyter" in arg for arg in sys.argv) else 'simple' }, # 默认的 'default': { diff --git a/pydbapi/conf/myhandlers.py b/pydbapi/conf/myhandlers.py index edc8b82..c03aba2 100644 --- a/pydbapi/conf/myhandlers.py +++ b/pydbapi/conf/myhandlers.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:05:56 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:34:11 # @github: https://github.com/longfengpili + import logging.handlers import os import errno diff --git a/pydbapi/db/__init__.py b/pydbapi/db/__init__.py index da1fa7a..0633e22 100644 --- a/pydbapi/db/__init__.py +++ b/pydbapi/db/__init__.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:06:06 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:34:41 # @github: https://github.com/longfengpili + from .base import DBMixin from .fileexec import DBFileExec diff --git a/pydbapi/db/base.py b/pydbapi/db/base.py index 3d16273..c8567e7 100644 --- a/pydbapi/db/base.py +++ b/pydbapi/db/base.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:06:11 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:34:43 # @github: https://github.com/longfengpili + import re import pandas as pd from tqdm import tqdm diff --git a/pydbapi/db/fileexec.py b/pydbapi/db/fileexec.py index 542baa7..b85902f 100644 --- a/pydbapi/db/fileexec.py +++ b/pydbapi/db/fileexec.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:06:17 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:34:45 # @github: https://github.com/longfengpili + import os import time diff --git a/pydbapi/sql/__init__.py b/pydbapi/sql/__init__.py index e1617db..45bd7d0 100644 --- a/pydbapi/sql/__init__.py +++ b/pydbapi/sql/__init__.py @@ -1,11 +1,10 @@ -# @Author: chunyang.xu -# @Email: 398745129@qq.com -# @Date: 2020-06-03 10:31:36 -# @Last Modified time: 2021-02-01 19:18:38 +# -*- coding: utf-8 -*- +# @Author: longfengpili +# @Date: 2023-06-02 15:27:41 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:35:17 # @github: https://github.com/longfengpili -# !/usr/bin/env python3 -# -*- coding:utf-8 -*- from .parse import SqlParse, SqlFileParse from .compile import SqlCompile diff --git a/pydbapi/sql/compile.py b/pydbapi/sql/compile.py index 4e272d3..4f54a3b 100644 --- a/pydbapi/sql/compile.py +++ b/pydbapi/sql/compile.py @@ -1,12 +1,10 @@ -# @Author: chunyang.xu -# @Email: 398745129@qq.com -# @Date: 2020-06-03 14:04:33 -# @Last Modified time: 2022-08-11 14:59:26 +# -*- coding: utf-8 -*- +# @Author: longfengpili +# @Date: 2023-06-02 15:27:41 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:35:21 # @github: https://github.com/longfengpili -# !/usr/bin/env python3 -# -*- coding:utf-8 -*- - from pydbapi.col import ColumnsModel diff --git a/pydbapi/sql/parse.py b/pydbapi/sql/parse.py index f98d191..9c26066 100644 --- a/pydbapi/sql/parse.py +++ b/pydbapi/sql/parse.py @@ -1,11 +1,10 @@ -# @Author: chunyang.xu -# @Email: 398745129@qq.com -# @Date: 2020-06-03 10:51:08 -# @Last Modified time: 2023-02-10 15:17:36 +# -*- coding: utf-8 -*- +# @Author: longfengpili +# @Date: 2023-06-02 15:27:41 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:35:15 # @github: https://github.com/longfengpili -#!/usr/bin/env python3 -# -*- coding:utf-8 -*- import re import os diff --git a/setup.py b/setup.py index adb5e21..bc5b431 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,17 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:19:32 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:43:11 # @github: https://github.com/longfengpili -# + + import os import sys import shutil import setuptools -VERSION = '0.0.107' +VERSION = '0.0.108' PROJECT_NAME = 'pydbapi' with open('README.md', 'r', encoding='utf-8') as f: diff --git a/tests/__init__.py b/tests/__init__.py index ec85ac5..bee47a7 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:19:23 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:45 # @github: https://github.com/longfengpili diff --git a/tests/base/db_test.py b/tests/base/db_test.py index adedc15..95c388e 100644 --- a/tests/base/db_test.py +++ b/tests/base/db_test.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:22:19 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:41:50 # @github: https://github.com/longfengpili + import pytest from pydbapi.sql import SqlParse diff --git a/tests/base/sql.sql b/tests/base/sql.sql index 3ccf011..5553191 100644 --- a/tests/base/sql.sql +++ b/tests/base/sql.sql @@ -1,10 +1,11 @@ /* -* @Author: chunyang.xu -* @Date: 2020-06-04 17:57:10 -* @Email: 398745129@qq.com -* @Last Modified time: 2020-06-28 14:18:55 +* @Author: longfengpili +* @Date: 2023-06-02 15:27:41 +* @Last Modified by: longfengpili +* @Last Modified time: 2023-07-27 15:41:50 */ + #【arguments】# date_min = '2020-02-12' date_max = '2020-02-13' diff --git a/tests/colmodel/__init__.py b/tests/colmodel/__init__.py index 20f716c..5eb9e7c 100644 --- a/tests/colmodel/__init__.py +++ b/tests/colmodel/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:06:59 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:35 # @github: https://github.com/longfengpili diff --git a/tests/colmodel/test_colmodel.py b/tests/colmodel/test_colmodel.py index 7ec2fef..2312960 100644 --- a/tests/colmodel/test_colmodel.py +++ b/tests/colmodel/test_colmodel.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:07:04 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:41:50 # @github: https://github.com/longfengpili diff --git a/tests/mysql/__init__.py b/tests/mysql/__init__.py index a88d847..c5cc643 100644 --- a/tests/mysql/__init__.py +++ b/tests/mysql/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:07:35 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:30 # @github: https://github.com/longfengpili diff --git a/tests/mysql/mysql_test.py b/tests/mysql/mysql_test.py index a3c3fec..5b4dcc8 100644 --- a/tests/mysql/mysql_test.py +++ b/tests/mysql/mysql_test.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:18 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:27 # @github: https://github.com/longfengpili + import os import pytest import json diff --git a/tests/sql/__init__.py b/tests/sql/__init__.py index 42da8a4..a8f0c00 100644 --- a/tests/sql/__init__.py +++ b/tests/sql/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:27 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:24 # @github: https://github.com/longfengpili diff --git a/tests/sql/col_test.py b/tests/sql/col_test.py index a835ff2..8290323 100644 --- a/tests/sql/col_test.py +++ b/tests/sql/col_test.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:32 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:21 # @github: https://github.com/longfengpili diff --git a/tests/sql/sql.sql b/tests/sql/sql.sql index fd74646..508a001 100644 --- a/tests/sql/sql.sql +++ b/tests/sql/sql.sql @@ -1,10 +1,11 @@ /* -* @Author: chunyang.xu -* @Date: 2020-06-04 17:57:10 -* @Email: 398745129@qq.com -* @Last Modified time: 2021-09-23 11:47:54 +* @Author: longfengpili +* @Date: 2023-06-02 15:27:41 +* @Last Modified by: longfengpili +* @Last Modified time: 2023-07-27 15:41:51 */ + #【arguments】# level = 10 fpid = ('301121904456', '30111300420') diff --git a/tests/sql/sqlcompile_test.py b/tests/sql/sqlcompile_test.py index 81be81e..31e1790 100644 --- a/tests/sql/sqlcompile_test.py +++ b/tests/sql/sqlcompile_test.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:37 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:13 # @github: https://github.com/longfengpili + from pydbapi.col import ColumnModel, ColumnsModel from pydbapi.sql import SqlCompile diff --git a/tests/sql/sqlfileparse_test.py b/tests/sql/sqlfileparse_test.py index eeac442..80838bb 100644 --- a/tests/sql/sqlfileparse_test.py +++ b/tests/sql/sqlfileparse_test.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:41 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:09 # @github: https://github.com/longfengpili + import os import pytest diff --git a/tests/sql/withsql.sql b/tests/sql/withsql.sql index 12a2916..177aa3b 100644 --- a/tests/sql/withsql.sql +++ b/tests/sql/withsql.sql @@ -1,8 +1,8 @@ /* -* @Author: chunyang.xu -* @Date: 2022-11-24 12:39:08 -* @Last Modified by: chunyang.xu -* @Last Modified time: 2022-11-25 15:04:29 +* @Author: longfengpili +* @Date: 2023-06-02 15:27:41 +* @Last Modified by: longfengpili +* @Last Modified time: 2023-07-27 15:41:51 */ ### diff --git a/tests/sqlite/__init__.py b/tests/sqlite/__init__.py index 823ddf3..a2afef0 100644 --- a/tests/sqlite/__init__.py +++ b/tests/sqlite/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:52 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:04 # @github: https://github.com/longfengpili diff --git a/tests/sqlite/sqlite.sql b/tests/sqlite/sqlite.sql index f5735fc..6ece007 100644 --- a/tests/sqlite/sqlite.sql +++ b/tests/sqlite/sqlite.sql @@ -1,8 +1,8 @@ /* -* @Author: chunyang.xu -* @Date: 2020-06-04 17:57:10 -* @Email: 398745129@qq.com -* @Last Modified time: 2022-03-14 19:53:45 +* @Author: longfengpili +* @Date: 2023-06-02 15:27:41 +* @Last Modified by: longfengpili +* @Last Modified time: 2023-07-27 15:41:52 */ #【arguments】# diff --git a/tests/sqlite/sqlite_test.py b/tests/sqlite/sqlite_test.py index f01d2dd..61bc74e 100644 --- a/tests/sqlite/sqlite_test.py +++ b/tests/sqlite/sqlite_test.py @@ -1,10 +1,11 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:18:59 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:41:56 # @github: https://github.com/longfengpili + import os import pytest from pydbapi.col import ColumnModel, ColumnsModel diff --git a/tests/trino/__init__.py b/tests/trino/__init__.py index 1034f33..dbf3d44 100644 --- a/tests/trino/__init__.py +++ b/tests/trino/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:19:08 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:41:52 # @github: https://github.com/longfengpili diff --git a/tests/trino/test_trino.py b/tests/trino/test_trino.py index dac966b..e170453 100644 --- a/tests/trino/test_trino.py +++ b/tests/trino/test_trino.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -# @Author: chunyang.xu +# @Author: longfengpili # @Date: 2023-06-02 15:27:41 -# @Last Modified by: chunyang.xu -# @Last Modified time: 2023-07-26 18:19:19 +# @Last Modified by: longfengpili +# @Last Modified time: 2023-07-27 15:42:43 # @github: https://github.com/longfengpili