Skip to content

Commit

Permalink
fix: data_source.py 紧急修复
Browse files Browse the repository at this point in the history
  • Loading branch information
ts7ming committed Oct 31, 2023
1 parent 4fad697 commit 1d3e87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyqueen/etl/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def get_sql(self, sql):
self.__etl_log['port'] = str(self.__port)
self.__etl_log['db_name'] = self.__db_name
self.__etl_log['db_type'] = self.__db_type
ret = 1 # self.__db.get_sql(sql)
ret = self.__db.get_sql(sql)
if self.__logger is not None:
self.__end()
return ret
Expand Down

0 comments on commit 1d3e87f

Please sign in to comment.