新注册的用户请输入邮箱并保存,随后登录邮箱激活账号。后续可直接使用邮箱登录!

Commit b3463342 authored by zan xiaopeng's avatar zan xiaopeng

fix

parent cc9564f2
......@@ -52,13 +52,13 @@ class Exp:
c_cnt = 0
for val in exp:
if val == "x":
expr.append(x_list[x_cnt])
expr = expr + x_list[x_cnt]
x_cnt = x_cnt + 1
elif val == "c":
expr.append(c_list[c_cnt])
expr = expr + c_list[c_cnt]
c_cnt = c_cnt + 1
else:
expr.append(val)
expr = expr + val
sql = f"select {expr} from {asset_en_name}"
self.sdk.logger.info(f"execute sql: {sql}")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment