From f7522265b61a9767c380de0c4f94d9a5cb2f9270 Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Mon, 28 Feb 2022 01:22:00 +0100 Subject: [PATCH] Fix grammar --- persistence/sqlite3.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistence/sqlite3.lua b/persistence/sqlite3.lua index e8ed702..8300826 100644 --- a/persistence/sqlite3.lua +++ b/persistence/sqlite3.lua @@ -209,7 +209,7 @@ CREATE TABLE IF NOT EXISTS table_entries ( -- Null is unused error("unsupported type: " .. type_) end - -- Order by key_content to have retrieve list parts in the correct order, making it easier for Lua + -- Order by key_content to retrieve list parts in the correct order, making it easier for Lua for table_id, key_type, key, value_type, value in self.database:urows"SELECT * FROM table_entries ORDER BY table_id, key_type, key" do local table = tables[table_id] or {} counts[table] = counts[table] or 1