[PR #155] [MERGED] Indexes & queries: code quality improvements & fixes #134

Closed
opened 2026-05-23 08:31:33 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/appy-one/acebase/pull/155
Author: @appy-one
Created: 9/13/2022
Status: Merged
Merged: 9/13/2022
Merged by: @appy-one

Base: masterHead: code-quality/indexes


📝 Commits (9)

  • 57fe852 Split up indexes into multiple files
  • 0aa7262 replace console.assert with function that throws
  • e786c38 Fix: B+Tree findAll taking last leaf for
  • 352c6b7 Fix: write empty leaf instead of throwing,
  • d1f3e08 Added todo comments
  • e8b4f90 removed odl file
  • 24fda67 Improved & added quyery/index unit tests
  • 084dae4 Bump acebase-core dependency
  • ff24595 chore: build

📊 Changes

67 files changed (+8344 additions, -7986 deletions)

View changed files

📝 dist/browser.js (+42 -24)
📝 dist/browser.min.js (+1 -1)
📝 package-lock.json (+1 -1)
📝 package.json (+1 -1)
📝 spec/indexes.spec.js (+109 -2)
📝 spec/query.spec.js (+55 -0)
📝 src/btree/binary-tree.js (+46 -34)
📝 src/btree/binary-tree.js.map (+1 -1)
src/data-index.js.map (+0 -1)
src/data-index/array-index-query-hint.d.ts (+8 -0)
src/data-index/array-index-query-hint.js (+27 -0)
src/data-index/array-index-query-hint.js.map (+1 -0)
src/data-index/array-index.d.ts (+21 -0)
src/data-index/array-index.js (+256 -0)
src/data-index/array-index.js.map (+1 -0)
src/data-index/data-index.d.ts (+105 -0)
src/data-index/data-index.js (+1937 -0)
src/data-index/data-index.js.map (+1 -0)
src/data-index/fulltext-index-query-hint.d.ts (+10 -0)
src/data-index/fulltext-index-query-hint.js (+34 -0)

...and 47 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/appy-one/acebase/pull/155 **Author:** [@appy-one](https://github.com/appy-one) **Created:** 9/13/2022 **Status:** ✅ Merged **Merged:** 9/13/2022 **Merged by:** [@appy-one](https://github.com/appy-one) **Base:** `master` ← **Head:** `code-quality/indexes` --- ### 📝 Commits (9) - [`57fe852`](https://github.com/appy-one/acebase/commit/57fe852a5cd437f7caa5f4aa39f5a73b321a95b5) Split up indexes into multiple files - [`0aa7262`](https://github.com/appy-one/acebase/commit/0aa7262756cf9fc873d337190538058d611d518f) replace `console.assert` with function that throws - [`e786c38`](https://github.com/appy-one/acebase/commit/e786c3824b280b7ea67a5b31b476642cda7d6e4d) Fix: B+Tree findAll taking last leaf for - [`352c6b7`](https://github.com/appy-one/acebase/commit/352c6b7aa652a979ca197ed43a341bddf1e4411d) Fix: write empty leaf instead of throwing, - [`d1f3e08`](https://github.com/appy-one/acebase/commit/d1f3e08a6af62aa0866447bf4f4c1509676c0fca) Added todo comments - [`e8b4f90`](https://github.com/appy-one/acebase/commit/e8b4f90dda0b3553eca67fdfca914f2682b5d87c) removed odl file - [`24fda67`](https://github.com/appy-one/acebase/commit/24fda67a372d7f0b99713edb3e06d29bc58341ab) Improved & added quyery/index unit tests - [`084dae4`](https://github.com/appy-one/acebase/commit/084dae4dab8ca21843418368447d3dd2e0f68623) Bump acebase-core dependency - [`ff24595`](https://github.com/appy-one/acebase/commit/ff24595558acd97953ca652233a492148699a05f) chore: build ### 📊 Changes **67 files changed** (+8344 additions, -7986 deletions) <details> <summary>View changed files</summary> 📝 `dist/browser.js` (+42 -24) 📝 `dist/browser.min.js` (+1 -1) 📝 `package-lock.json` (+1 -1) 📝 `package.json` (+1 -1) 📝 `spec/indexes.spec.js` (+109 -2) 📝 `spec/query.spec.js` (+55 -0) 📝 `src/btree/binary-tree.js` (+46 -34) 📝 `src/btree/binary-tree.js.map` (+1 -1) ➖ `src/data-index.js.map` (+0 -1) ➕ `src/data-index/array-index-query-hint.d.ts` (+8 -0) ➕ `src/data-index/array-index-query-hint.js` (+27 -0) ➕ `src/data-index/array-index-query-hint.js.map` (+1 -0) ➕ `src/data-index/array-index.d.ts` (+21 -0) ➕ `src/data-index/array-index.js` (+256 -0) ➕ `src/data-index/array-index.js.map` (+1 -0) ➕ `src/data-index/data-index.d.ts` (+105 -0) ➕ `src/data-index/data-index.js` (+1937 -0) ➕ `src/data-index/data-index.js.map` (+1 -0) ➕ `src/data-index/fulltext-index-query-hint.d.ts` (+10 -0) ➕ `src/data-index/fulltext-index-query-hint.js` (+34 -0) _...and 47 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-23 08:31:33 -06:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/acebase#134
No description provided.