changed the default json field max size to 1mb

This commit is contained in:
Gani Georgiev
2025-05-02 11:49:47 +03:00
parent 5dbd9821e8
commit 7ffe9f63a5
33 changed files with 45 additions and 42 deletions

View File

@@ -146,7 +146,7 @@ func TestJSONFieldValidateValue(t *testing.T) {
&core.JSONField{Name: "test"},
func() *core.Record {
record := core.NewRecord(collection)
record.SetRaw("test", types.JSONRaw(`"`+strings.Repeat("a", (5<<20))+`"`))
record.SetRaw("test", types.JSONRaw(`"`+strings.Repeat("a", (1<<20))+`"`))
return record
},
true,