chore: ci Initial hive support (#10593)

* Initial hive support

* Clone hive setup

* Make hive tests work locally

* Debugging presto failure

* sleep in dataset test

* Address comments

* Address comments

* Pin ipython, exclude new pylint rules

Co-authored-by: bogdan kyryliuk <bogdankyryliuk@dropbox.com>
This commit is contained in:
Bogdan
2020-08-27 09:49:18 -07:00
committed by GitHub
parent 81525c3e9d
commit 19a9bcc9c5
31 changed files with 535 additions and 190 deletions

View File

@@ -208,6 +208,8 @@ class TestDbEngineSpecs(TestDbEngineSpec):
]
if example_db.backend == "postgresql":
expected = ["VARCHAR(255)", "VARCHAR(255)", "DOUBLE PRECISION"]
elif example_db.backend == "hive":
expected = ["STRING", "STRING", "FLOAT"]
else:
expected = ["VARCHAR(255)", "VARCHAR(255)", "FLOAT"]
self.assertEqual(col_names, expected)