From fb682c3e8e4e3b3c9246d19224fe0f0113953b8d Mon Sep 17 00:00:00 2001 From: John Parejko Date: Thu, 2 May 2024 14:47:04 -0700 Subject: [PATCH] Add short->int16 type for detector fields --- tests/test_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_schema.py b/tests/test_schema.py index ba10cb9..9d69ab9 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -74,6 +74,7 @@ def _validateSchema(self, dataset, dataId, tableName): # the data type mapping from felis datatype to pandas typeMapping = { "boolean": "^bool$", + "short": "^int16$", "int": "^int32$", "long": "^int64$", "float": "^float32$",