File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
cardano-chain-gen/test/Test/Cardano/Db/Mock/Unit Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ checkForceIndexesArg =
19
19
withCustomConfig commandLineForceIndexArgs babbageConfigDir testLabel $ \ _ _ dbSyncEnv -> do
20
20
startDBSync dbSyncEnv
21
21
threadDelay 3_000_000
22
- assertEqQuery dbSyncEnv DB. queryPgIndexesCount 161 " there wasn't the correct number of indexes"
22
+ assertEqQuery dbSyncEnv DB. queryPgIndexesCount 162 " there wasn't the correct number of indexes"
23
23
where
24
24
testLabel = " CLAcheckForceIndexesArg"
25
25
commandLineForceIndexArgs =
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ checkForceIndexesArg =
17
17
startDBSync dbSync
18
18
19
19
-- Verify number of DB indexes
20
- assertEqQuery dbSync DB. queryPgIndexesCount 161 " unexpected number of indexes"
20
+ assertEqQuery dbSync DB. queryPgIndexesCount 162 " unexpected number of indexes"
21
21
where
22
22
cliArgs = initCommandLineArgs {claForceIndexes = True }
23
23
testLabel = " conwayCLACheckForceIndexesArg"
Original file line number Diff line number Diff line change 1
1
2
2
CREATE INDEX IF NOT EXISTS idx_block_time ON block(time );
3
+ CREATE INDEX IF NOT EXISTS idx_tx_out_payment_cred ON tx_out(payment_cred);
3
4
CREATE INDEX IF NOT EXISTS idx_pool_update_hash_id ON pool_update(hash_id);
You can’t perform that action at this time.
0 commit comments