Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d70b133
feat(core): Add a new string index: shingles
darkcoderrises Jul 9, 2025
36543e4
updated txn
darkcoderrises Jul 15, 2025
08f0ebc
updated badger
darkcoderrises Jul 15, 2025
437597d
modifying some more config
darkcoderrises Jul 16, 2025
3e31258
Revert "modifying some more config"
darkcoderrises Jul 17, 2025
e5f7381
added code to skip phase 2
darkcoderrises Jul 17, 2025
d7771fc
Fixed typo
darkcoderrises Jul 17, 2025
b57332b
Reverted skipping phase1
darkcoderrises Jul 21, 2025
1024a24
Fix off by one error; add unit tests for tokenizer
matthewmcneely Aug 13, 2025
d004a36
Satisfy the trunk linter action
matthewmcneely Aug 13, 2025
e88616a
fixed bug
darkcoderrises Aug 14, 2025
3344941
Add integration tests for shingles/ngram index operations
matthewmcneely Aug 14, 2025
02c7848
Rename shingles to ngram
matthewmcneely Aug 14, 2025
5d9fd2e
Rename test file
matthewmcneely Aug 14, 2025
084a362
Add ngram keyword
matthewmcneely Aug 15, 2025
e38a985
Remove unused reserved word
matthewmcneely Aug 18, 2025
26954cc
Force go build env params
matthewmcneely Aug 18, 2025
e0d8f72
Remove build tag
matthewmcneely Aug 18, 2025
59797db
Apply schema features based on version
matthewmcneely Aug 18, 2025
c839689
Simplify/consolidate ngram token processing
matthewmcneely Aug 19, 2025
ba41006
Add logic to support application of schema for ngram indexing for upg…
matthewmcneely Aug 19, 2025
f2584a1
Merge branch 'main' into harshil-goel/shingles
matthewmcneely Aug 19, 2025
d37412b
Add ngram support to GraphQL
matthewmcneely Aug 20, 2025
f37d189
Add ngram-specific GraphQL integration tests
matthewmcneely Aug 20, 2025
510782e
Fix long line
matthewmcneely Aug 20, 2025
da7cf63
Update expected generated schema files with ngram filter type
matthewmcneely Aug 20, 2025
886f50a
Update additional expected generated schemas
matthewmcneely Aug 20, 2025
c0b0f29
Update other requisite generated schemas for new ngram filter
matthewmcneely Aug 20, 2025
47e3c9d
Update expect error text to include ngram
matthewmcneely Aug 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed typo
  • Loading branch information
darkcoderrises authored and matthewmcneely committed Aug 13, 2025
commit d7771fcb0d6a2eecc07db7f02a4ea58d6d3b5bfe
2 changes: 1 addition & 1 deletion posting/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ func (r *rebuilder) Run(ctx context.Context) error {
if skipPhase1 {
tmpIndexDir = x.WorkerConfig.TmpDir + "/" + dirName
} else {
tmpIndexDir, err := os.MkdirTemp(x.WorkerConfig.TmpDir, "dgraph_index_")
tmpIndexDir, err = os.MkdirTemp(x.WorkerConfig.TmpDir, "dgraph_index_")
if err != nil {
return errors.Wrap(err, "error creating temp dir for reindexing")
}
Expand Down