Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: unable to retrieve primitive records #845

Merged
merged 1 commit into from
Mar 14, 2025

Conversation

MicBun
Copy link
Contributor

@MicBun MicBun commented Mar 14, 2025

Updated the dependency to pull from main, and adjusted the code to make sure the test is all pass

Description

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:

  • Updated read access checks in multiple SQL actions to use the is_allowed_to_read function instead of is_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))
  • Ensured numeric precision in calculations and return values within SQL actions. (internal/migrations/005-primitive-query.sql, [internal/migrations/005-primitive-query.sqlL264-R270](https://github.com/trufnetwork/node/pull/845/files#diff-acc937eedadd14e909f3a48c4316f6c9fc844a4beffb718745e677332d1b8ab4L264-R270))
  • Modified SQL actions to iterate through records and return results using a loop. (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:

  • Updated test cases to assert numeric precision in expected results. (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))
  • Fixed input parameters in test cases to correctly reflect the intended test scenarios. (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:

  • Updated go.mod to include new versions of kwil-db and sdk-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

@MicBun MicBun self-assigned this Mar 14, 2025
@MicBun MicBun linked an issue Mar 14, 2025 that may be closed by this pull request
@MicBun MicBun force-pushed the fix/PrimitiveRetrieval branch from c9c95f8 to c7dd3a3 Compare March 14, 2025 10:13
@MicBun MicBun requested a review from outerlook March 14, 2025 10:14
@MicBun MicBun marked this pull request as ready for review March 14, 2025 10:14
@MicBun MicBun force-pushed the fix/PrimitiveRetrieval branch from c7dd3a3 to 5a4cc75 Compare March 14, 2025 10:15
@outerlook outerlook merged commit 6c8d3c5 into refactor/node-2.0 Mar 14, 2025
4 of 7 checks passed
@outerlook outerlook deleted the fix/PrimitiveRetrieval branch March 14, 2025 12:43
Copy link

@MicBun please use git blame and specify the link to the commit link that has introduced this bug. Send the following message in this PR: @pr-time-tracker bug commit [link] && bug author @name

Copy link

@outerlook
⚠️⚠️⚠️
You must submit the time spent on this PR.
⚠️⚠️⚠️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bug(2.0): unable to retrieve primitive records
2 participants