From e37da81dc619b934a7cdbb28fd9dfaf69ad78722 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 9 Oct 2018 22:52:43 -0400 Subject: [PATCH] added database indexes --- torba/basedatabase.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/torba/basedatabase.py b/torba/basedatabase.py index 674b10ebc..8d92a8f11 100644 --- a/torba/basedatabase.py +++ b/torba/basedatabase.py @@ -180,6 +180,9 @@ class BaseDatabase(SQLiteMixin): used_times integer not null default 0 ); """ + CREATE_PUBKEY_ADDRESS_INDEX = """ + create index if not exists pubkey_address_account_idx on pubkey_address (account); + """ CREATE_TX_TABLE = """ create table if not exists tx ( @@ -202,6 +205,9 @@ class BaseDatabase(SQLiteMixin): is_reserved boolean not null default 0 ); """ + CREATE_TXO_INDEX = """ + create index if not exists txo_address_idx on txo (address); + """ CREATE_TXI_TABLE = """ create table if not exists txi ( @@ -210,12 +216,18 @@ class BaseDatabase(SQLiteMixin): address text references pubkey_address ); """ + CREATE_TXI_INDEX = """ + create index if not exists txi_address_idx on txi (address); + """ CREATE_TABLES_QUERY = ( CREATE_TX_TABLE + CREATE_PUBKEY_ADDRESS_TABLE + + CREATE_PUBKEY_ADDRESS_INDEX + CREATE_TXO_TABLE + - CREATE_TXI_TABLE + CREATE_TXO_INDEX + + CREATE_TXI_TABLE + + CREATE_TXI_INDEX ) @staticmethod @@ -308,7 +320,6 @@ class BaseDatabase(SQLiteMixin): JOIN pubkey_address USING (address) WHERE pubkey_address.account = :$account UNION SELECT txi.txid FROM txi - JOIN txo USING (txoid) JOIN pubkey_address USING (address) WHERE pubkey_address.account = :$account """ return self.run_query(*query("SELECT {} FROM tx".format(cols), **constraints))