fix: datatype tracking issue on virtual dataset (#20088)

* Fix datatype tracking issue on virtual dataset

* fix pytest issue on postgresql
This commit is contained in:
Smart-Codi
2022-06-02 05:43:11 +10:00
committed by GitHub
parent 3d5ae6226b
commit 74c5479926
2 changed files with 10 additions and 2 deletions

View File

@@ -52,11 +52,10 @@ from tests.integration_tests.test_app import app
from .base_tests import SupersetTestCase
VIRTUAL_TABLE_INT_TYPES: Dict[str, Pattern[str]] = {
"hive": re.compile(r"^INT_TYPE$"),
"mysql": re.compile("^LONGLONG$"),
"postgresql": re.compile(r"^INT$"),
"postgresql": re.compile(r"^INTEGER$"),
"presto": re.compile(r"^INTEGER$"),
"sqlite": re.compile(r"^INT$"),
}