cosmos-sdk/x/group/internal/orm
Amaury 35d3312c3b
chore: group ORM audit changes (#11842)
## Description

ref: #10968 



---

### Author Checklist

*All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.*

I have...

- [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] added `!` to the type prefix if API or client breaking change
- [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting))
- [ ] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing)
- [ ] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go code](https://blog.golang.org/godoc)
- [ ] updated the relevant documentation or specification
- [ ] reviewed "Files changed" and left comments if necessary
- [ ] confirmed all CI checks have passed

### Reviewers Checklist

*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*

I have...

- [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [ ] confirmed all author checklist items have been addressed 
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed documentation is accurate
- [ ] reviewed tests and test coverage
- [ ] manually tested (if applicable)
2022-05-04 12:07:02 +00:00
..
spec chore: group ORM audit changes (#11842) 2022-05-04 12:07:02 +00:00
auto_uint64.go feat: Add Table-Store (aka ORM) package - Genesis (#10481) 2021-11-16 16:08:21 +00:00
auto_uint64_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
example_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
generators_test.go feat: Add Table-Store (aka ORM) package - `AutoUInt64Table` and `PrimaryKeyTable` (#10415) 2021-10-27 12:49:37 +00:00
genesis.go chore: group ORM audit changes (#11842) 2022-05-04 12:07:02 +00:00
genesis_test.go feat: Add Table-Store (aka ORM) package - Genesis (#10481) 2021-11-16 16:08:21 +00:00
index.go chore: group ORM audit changes (#11842) 2022-05-04 12:07:02 +00:00
index_property_test.go feat: Add Table-Store (aka ORM) package - Table and Indexable (#9751) 2021-10-21 10:19:52 +00:00
index_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
indexer.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
indexer_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
iterator.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
iterator_property_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
iterator_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
key_codec.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
key_codec_test.go feat: Add Table-Store (aka ORM) package - `AutoUInt64Table` and `PrimaryKeyTable` (#10415) 2021-10-27 12:49:37 +00:00
orm_scenario_test.go feat: Add Table-Store (aka ORM) package - Genesis (#10481) 2021-11-16 16:08:21 +00:00
primary_key.go chore: group ORM audit changes (#11842) 2022-05-04 12:07:02 +00:00
primary_key_property_test.go feat: Add Table-Store (aka ORM) package - `AutoUInt64Table` and `PrimaryKeyTable` (#10415) 2021-10-27 12:49:37 +00:00
primary_key_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
sequence.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
sequence_property_test.go feat: Add Table-Store (aka ORM) package - Table and Indexable (#9751) 2021-10-21 10:19:52 +00:00
sequence_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
table.go feat: Add Table-Store (aka ORM) package - Genesis (#10481) 2021-11-16 16:08:21 +00:00
table_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
testsupport.go feat: Add Table-Store (aka ORM) package - `AutoUInt64Table` and `PrimaryKeyTable` (#10415) 2021-10-27 12:49:37 +00:00
types.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00
types_test.go feat: Add Table-Store (aka ORM) package - Index and Iterator (#10451) 2021-11-09 18:01:27 +00:00