From 045cdee30c330dd367b08dd8786e721e1cbfe40f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" <nick@koston.org> Date: Sat, 4 Jul 2020 01:04:11 -0500 Subject: [PATCH] Avoid selecting the states created column for history (#37450) We never use the data for history. We should not select it as it created unneeded overhead. --- homeassistant/components/history/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/history/__init__.py b/homeassistant/components/history/__init__.py index 51202884dfe..fe9a6c82825 100644 --- a/homeassistant/components/history/__init__.py +++ b/homeassistant/components/history/__init__.py @@ -86,7 +86,6 @@ QUERY_STATES = [ States.attributes, States.last_changed, States.last_updated, - States.created, ] -- GitLab