Commit 3b45d8ad authored by Wei Shoulin's avatar Wei Shoulin
Browse files

data

parent 9e108dcc
...@@ -107,7 +107,7 @@ class Level2DataApi(object): ...@@ -107,7 +107,7 @@ class Level2DataApi(object):
return Result.error(message = str(resp.error.detail)) return Result.error(message = str(resp.error.detail))
datas.flush() datas.flush()
records = pickle.loads(datas.getvalue()) records = pickle.loads(datas.getvalue())
return Result.ok_data(data = records).append("totalCount", totalCount) return Result.ok_data(data = records[0]).append("totalCount", totalCount).append("columns", records[1])
except grpc.RpcError as e: except grpc.RpcError as e:
return Result.error(message="%s:%s" % (e.code().value, e.details())) return Result.error(message="%s:%s" % (e.code().value, e.details()))
......
Supports Markdown
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