fix: unable to retrieve primitive records #845
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated the dependency to pull from
main
, and adjusted the code to make sure the test is all passDescription
This pull request includes updates to various SQL actions and test cases to improve functionality and ensure data precision. The most important changes involve modifying read access checks, refining numeric precision in test cases, and updating dependencies.
SQL Action Updates:
is_allowed_to_read
function instead ofis_wallet_allowed_to_read
. (internal/migrations/005-primitive-query.sql
,[[1]](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L17-R17)
,[[2]](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L99-R99)
,[[3]](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L134-R134)
,[[4]](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L169-R169)
,[[5]](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L236-R236)
)internal/migrations/005-primitive-query.sql
,[internal/migrations/005-primitive-query.sqlL264-R270](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L264-R270)
)internal/migrations/007-public-query.sql
,[[1]](https://github.com/trufnetwork/node/pull/845/files#diff-7ad83b0088dd5305e393afa62a5c026627d03176cd05f5fa113e00b9dac489beL72-R78)
,[[2]](https://github.com/trufnetwork/node/pull/845/files#diff-7ad83b0088dd5305e393afa62a5c026627d03176cd05f5fa113e00b9dac489beL119-R129)
)Test Case Updates:
tests/streams/query/query_test.go
,[[1]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL116-R120)
,[[2]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL158-R158)
,[[3]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL196-R200)
,[[4]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL238-R242)
,[[5]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL278-R278)
,[[6]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL328-R332)
,[[7]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL375-R379)
,[[8]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL430-R434)
)tests/streams/query/query_test.go
,[[1]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL307-R307)
,[[2]](https://github.com/trufnetwork/node/pull/845/files#diff-b3588b249955797b226816b085f1bfcaa6f085159a80b516b20a6e69362b5d1cL409-R409)
)Dependency Updates:
go.mod
to include new versions ofkwil-db
andsdk-go
dependencies. (go.mod
,[[1]](https://github.com/trufnetwork/node/pull/845/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6L15-R21)
,[[2]](https://github.com/trufnetwork/node/pull/845/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6L220)
)Related Problem
resolves: #837
How Has This Been Tested?
Run the test, it is all running