gitextract_mc7da0i7/ ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── renovate.json │ └── workflows/ │ ├── cd-badger.yml │ ├── ci-badger-bank-tests-nightly.yml │ ├── ci-badger-bank-tests.yml │ ├── ci-badger-tests.yml │ ├── ci-dgraph-tests.yml │ └── trunk.yml ├── .gitignore ├── .trunk/ │ ├── .gitignore │ ├── configs/ │ │ ├── .checkov.yaml │ │ ├── .markdownlint.json │ │ ├── .prettierrc │ │ ├── .shellcheckrc │ │ ├── .yamllint.yaml │ │ └── svgo.config.mjs │ └── trunk.yaml ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── VERSIONING.md ├── backup.go ├── backup_test.go ├── batch.go ├── batch_test.go ├── changes.sh ├── compaction.go ├── contrib/ │ └── RELEASE.md ├── db.go ├── db2_test.go ├── db_test.go ├── dir_aix.go ├── dir_other.go ├── dir_plan9.go ├── dir_unix.go ├── dir_windows.go ├── discard.go ├── discard_test.go ├── doc.go ├── docs/ │ ├── design.md │ ├── encryption-at-rest.md │ ├── index.md │ ├── quickstart.md │ └── troubleshooting.md ├── errors.go ├── fb/ │ ├── BlockOffset.go │ ├── TableIndex.go │ ├── flatbuffer.fbs │ ├── gen.sh │ └── install_flatbuffers.sh ├── go.mod ├── go.sum ├── histogram.go ├── histogram_test.go ├── integration/ │ └── testgc/ │ ├── .gitignore │ └── main.go ├── iterator.go ├── iterator_test.go ├── key_registry.go ├── key_registry_test.go ├── level_handler.go ├── levels.go ├── levels_test.go ├── logger.go ├── logger_test.go ├── managed_db.go ├── managed_db_test.go ├── manifest.go ├── manifest_test.go ├── memtable.go ├── merge.go ├── merge_test.go ├── metrics_test.go ├── options/ │ └── options.go ├── options.go ├── options_test.go ├── pb/ │ ├── badgerpb4.pb.go │ ├── badgerpb4.proto │ ├── gen.sh │ └── protos_test.go ├── publisher.go ├── publisher_test.go ├── skl/ │ ├── README.md │ ├── arena.go │ ├── skl.go │ └── skl_test.go ├── stream.go ├── stream_test.go ├── stream_writer.go ├── stream_writer_test.go ├── structs.go ├── structs_test.go ├── table/ │ ├── README.md │ ├── builder.go │ ├── builder_test.go │ ├── iterator.go │ ├── merge_iterator.go │ ├── merge_iterator_test.go │ ├── table.go │ └── table_test.go ├── test.sh ├── test_extensions.go ├── trie/ │ ├── trie.go │ └── trie_test.go ├── txn.go ├── txn_test.go ├── util.go ├── value.go ├── value_test.go ├── watermark_edge_test.go └── y/ ├── bloom.go ├── bloom_test.go ├── checksum.go ├── checksum_test.go ├── encrypt.go ├── encrypt_test.go ├── error.go ├── error_test.go ├── file_dsync.go ├── file_nodsync.go ├── iterator.go ├── metrics.go ├── watermark.go ├── y.go ├── y_test.go └── zstd.go