Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion node/src/manager/commands/drop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use std::sync::Arc;
/// Finds, unassigns, record and remove matching deployments.
///
/// Asks for confirmation before removing any data.
/// This is a convenience fuction that to call a series of other graphman commands.
/// This is a convenience function that to call a series of other graphman commands.
pub async fn run(
primary_pool: ConnectionPool,
subgraph_store: Arc<SubgraphStore>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ BEGIN
where
subgraph='subgraphs' and
entity='SubgraphDeploymentAssignment'
) assigments
on deployments.id=assigments.id
) assignments
on deployments.id=assignments.id
where
deployments.subgraph='subgraphs' and
deployments.entity='SubgraphDeployment' and
assigments.id is null)
assignments.id is null)
-- Iterate over indexes and drop each
LOOP
EXECUTE 'DROP INDEX ' || index_to_drop.name;
Expand Down
2 changes: 1 addition & 1 deletion store/test-store/tests/chain/ethereum/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ dataSources:
file:
/: /ipfs/Qmabi
blockHandlers:
- handler: intitialize
- handler: initialize
filter:
kind: once
- handler: handleBlock
Expand Down