mirror of
https://github.com/apache/superset.git
synced 2026-04-20 16:44:46 +00:00
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:
@@ -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$"),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user