From 028806af11b942cc8513f6609f79880f700b7803 Mon Sep 17 00:00:00 2001 From: "@NathanEpstein" Date: Thu, 18 Jul 2019 12:34:02 -0400 Subject: [PATCH] this tutorial did not write to the database with the protocol set to json. It worked when changed to line --- examples/tutorial_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial_pandas.py b/examples/tutorial_pandas.py index 67a5457d..13e72f8c 100644 --- a/examples/tutorial_pandas.py +++ b/examples/tutorial_pandas.py @@ -12,7 +12,7 @@ def main(host='localhost', port=8086): user = 'root' password = 'root' dbname = 'demo' - protocol = 'json' + protocol = 'line' client = DataFrameClient(host, port, user, password, dbname)