Merge pull request #1980 from lbryio/batched-channel-name-initialization

use _batched_select to populate channel names when initializing files
This commit is contained in:
Jack Robison 2019-03-12 13:41:58 -04:00 committed by GitHub
commit b266cde511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View file

@ -147,11 +147,11 @@ def get_all_lbry_files(transaction: sqlite3.Connection) -> typing.List[typing.Di
"claim": claim
}
)
for claim_id in signed_claims.keys():
channel_name = transaction.execute("select claim_name from claim where claim_id=?", (claim_id, )).fetchone()
if channel_name:
for claim in signed_claims[claim_id]:
claim.channel_name = channel_name[0]
for claim_name, claim_id in _batched_select(
transaction, "select c.claim_name, c.claim_id from claim c where c.claim_id in {}",
list(signed_claims.keys())):
for claim in signed_claims[claim_id]:
claim.channel_name = claim_name
return files

View file

@ -73,6 +73,7 @@ class TestAccount(AsyncioTestCase):
def test_load_and_save_account(self):
account_data = {
'name': 'Main Account',
'modified_on': 123.456,
'seed':
"carbon smart garage balance margin twelve chest sword toast envelope bottom stomac"
"h absent",