Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pengkang1991 authored Nov 29, 2023
1 parent aea3be3 commit b9ff51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/engines/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def test_filter_sql_with_distinct(self):
# 只抽查一个函数
banned_sql = "select distinct * from user_table"
check_result = new_engine.filter_sql(sql=banned_sql, limit_num=10)
self.assertEqual(check_result, "select distinct top 10 user from user_table")
self.assertEqual(check_result, "select distinct top 10 * user from user_table")

def test_execute_check(self):
new_engine = MssqlEngine(instance=self.ins1)
Expand Down

0 comments on commit b9ff51b

Please sign in to comment.