-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shovel: bugfix. filter ref was not filtering
This was a regression from: 42721b2 When the accept method was re-written, little care was taken to not break filter references. The fix was simple, only exit early if there are no args AND there are not filter references.
- Loading branch information
1 parent
97622cf
commit 0f7417e
Showing
8 changed files
with
104 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
[{ | ||
"name": "erc721", | ||
"enabled": true, | ||
"table": { | ||
|
@@ -44,4 +44,4 @@ | |
} | ||
] | ||
} | ||
} | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[ | ||
{ | ||
"name": "tx", | ||
"enabled": true, | ||
"table": { | ||
"name": "tx", | ||
"columns": [{"name": "tx_hash", "type": "bytea"}] | ||
}, | ||
"block": [ | ||
{ | ||
"name": "tx_hash", | ||
"column": "tx_hash", | ||
"filter_op": "contains", | ||
"filter_arg": ["0x713df81a2ab53db1d01531106fc5de43012a401ddc3e0586d522e5c55a162d42"] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "tx_w_block", | ||
"enabled": true, | ||
"table": { | ||
"name": "tx_w_block", | ||
"columns": [ | ||
{"name": "block_num", "type": "numeric"}, | ||
{"name": "tx_hash", "type": "bytea"} | ||
] | ||
}, | ||
"block": [ | ||
{"name": "block_num", "column": "block_num"}, | ||
{ | ||
"name": "tx_hash", | ||
"column": "tx_hash", | ||
"filter_op": "contains", | ||
"filter_ref": { | ||
"integration": "tx", | ||
"column": "tx_hash" | ||
} | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
[{ | ||
"name": "seaport_test", | ||
"enabled": true, | ||
"table": { | ||
|
@@ -124,4 +124,4 @@ | |
} | ||
] | ||
} | ||
} | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters