[TD-2330]fix some error

This commit is contained in:
liuyq-617 2020-12-12 10:01:33 +08:00
parent 36f7685a15
commit 9b24fb8ddf
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class ConcurrentInquiry:
sel_col_list=[]
col_rand=random.randint(0,len(col_list))
for i,j in zip(col_list[0:col_rand],func_list): #决定每个被查询col的函数
alias = 'as '+ str(i)
alias = ' as '+ str(i)
pick_func = ''
if j == 'leastsquares':
pick_func=j+'('+i+',1,1)'