From 88242c6875297eb31fbbc35fc57a1091f6efce90 Mon Sep 17 00:00:00 2001 From: Vishal Anand Date: Mon, 18 Sep 2023 15:48:45 +0530 Subject: [PATCH] Version 1.1.7 changes. --- README.md | 2 +- e6data_python_connector/e6data_grpc.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 976de55..4a552b5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # e6data Python Connector -![version](https://img.shields.io/badge/version-1.1.6-blue.svg) +![version](https://img.shields.io/badge/version-1.1.7-blue.svg) ## Introduction diff --git a/e6data_python_connector/e6data_grpc.py b/e6data_python_connector/e6data_grpc.py index 4cc80e8..952e831 100644 --- a/e6data_python_connector/e6data_grpc.py +++ b/e6data_python_connector/e6data_grpc.py @@ -565,7 +565,7 @@ def explain_analyse(self): explain_analyze_response = self.connection.client.explainAnalyze(explain_analyze_request) return dict( is_cached=explain_analyze_response.isCached, - persing_time=explain_analyze_response.parsingTime, + parsing_time=explain_analyze_response.parsingTime, queuing_time=explain_analyze_response.queueingTime, planner=explain_analyze_response.explainAnalyze, ) diff --git a/setup.py b/setup.py index f43e15d..a0a8eeb 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ import setuptools -VERSION = [1, 1, 6] +VERSION = [1, 1, 7] def get_long_desc():