mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 03:26:01 +00:00
Fix 'NetworkOPs::countAccountTxs' taking way too long.
This commit is contained in:
@@ -1217,7 +1217,8 @@ NetworkOPs::transactionsSQL (std::string selection, const RippleAddress& account
|
|||||||
|
|
||||||
std::string sql =
|
std::string sql =
|
||||||
boost::str (boost::format ("SELECT %s FROM "
|
boost::str (boost::format ("SELECT %s FROM "
|
||||||
"AccountTransactions INNER JOIN Transactions ON Transactions.TransID = AccountTransactions.TransID "
|
"AccountTransactions INDEXED BY AcctTxIndex INNER JOIN Transactions "
|
||||||
|
"ON Transactions.TransID = AccountTransactions.TransID "
|
||||||
"WHERE Account = '%s' %s %s "
|
"WHERE Account = '%s' %s %s "
|
||||||
"ORDER BY AccountTransactions.LedgerSeq %s, AccountTransactions.TxnSeq %s, AccountTransactions.TransID %s "
|
"ORDER BY AccountTransactions.LedgerSeq %s, AccountTransactions.TxnSeq %s, AccountTransactions.TransID %s "
|
||||||
"LIMIT %u, %u;")
|
"LIMIT %u, %u;")
|
||||||
|
|||||||
Reference in New Issue
Block a user