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 SchemaStats to return empty stats #1359

Merged
merged 31 commits into from
Nov 9, 2022
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4b29a73
WIP
Oct 12, 2022
92e821f
WIP
Oct 12, 2022
83a68fe
Merge branch 'main' of https://github.com/w84thesun/FerretDB
Oct 18, 2022
9b1e885
merge conflicts
Oct 20, 2022
ce440cb
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Oct 21, 2022
31ecf5c
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Oct 24, 2022
5b29d95
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Oct 25, 2022
7c9d053
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Oct 27, 2022
2e8d978
Merge remote-tracking branch 'upstream/main'
Oct 28, 2022
fc972ac
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Oct 31, 2022
ad2dddf
Merge branch 'main' of https://github.com/FerretDB/FerretDB
Nov 2, 2022
93425cb
WIP
Nov 2, 2022
1b998b6
Merge branch 'main' into issue-1317-fix-schema-stats
Nov 3, 2022
3ede7d8
WIP
Nov 4, 2022
d36af6e
Merge remote-tracking branch 'origin/issue-1317-fix-schema-stats' int…
Nov 4, 2022
d51d29d
Merge branch 'main' into issue-1317-fix-schema-stats
Nov 4, 2022
2fbea99
WIP
Nov 4, 2022
6c39c3e
Merge remote-tracking branch 'origin/issue-1317-fix-schema-stats' int…
Nov 4, 2022
06123e3
Merge branch 'main' into issue-1317-fix-schema-stats
Nov 4, 2022
61cab15
Merge branch 'main' into issue-1317-fix-schema-stats
Nov 4, 2022
1ed16b0
WIP
Nov 4, 2022
8c9895e
wip
rumyantseva Nov 8, 2022
888c3c5
no docusaurus
rumyantseva Nov 8, 2022
7c98377
revert the change that wasn't needed
rumyantseva Nov 8, 2022
138fddb
cover both cases
rumyantseva Nov 8, 2022
f5ac179
wip
rumyantseva Nov 8, 2022
f7bdbd0
Merge branch 'main' into issue-1317-fix-schema-stats
Nov 8, 2022
17b6e7a
fix gomod
rumyantseva Nov 8, 2022
b117bd4
Merge branch 'main' into issue-1317-fix-schema-stats
mergify[bot] Nov 8, 2022
fca25fe
godoc
rumyantseva Nov 9, 2022
7366726
Merge branch 'main' into issue-1317-fix-schema-stats
mergify[bot] Nov 9, 2022
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
merge conflicts
  • Loading branch information
w84thesun committed Oct 20, 2022
commit 9b1e88588b5b8bde034c19ea7514850e1faeb584
6 changes: 2 additions & 4 deletions internal/tjson/tjson_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,11 @@ func fuzzJSON(f *testing.F, testCases []testCase) {
f.Add(tc.j, string(schema))

if tc.canonJ != "" {
f.Add(tc.canonJ, testCases[0].schema)
f.Add(tc.canonJ, string(schema))
}
}

// TODO Add fuzzing for schema https://github.com/FerretDB/FerretDB/issues/943

f.Fuzz(func(t *testing.T, j string, schema *Schema) {
f.Fuzz(func(t *testing.T, j, schema string) {
t.Parallel()

// raw "null" should never reach UnmarshalJSON due to the way encoding/json works
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.