File tree 1 file changed +2
-1
lines changed
src/main/java/com/mongodb/hibernate/internal/translate
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 46
46
import static java .lang .String .format ;
47
47
48
48
import com .mongodb .hibernate .internal .FeatureNotSupportedException ;
49
+ import com .mongodb .hibernate .internal .MongoConstants ;
49
50
import com .mongodb .hibernate .internal .extension .service .StandardServiceRegistryScopedState ;
50
51
import com .mongodb .hibernate .internal .translate .mongoast .AstDocument ;
51
52
import com .mongodb .hibernate .internal .translate .mongoast .AstElement ;
@@ -855,7 +856,7 @@ public void visitCustomTableUpdate(TableUpdateCustomSql tableUpdateCustomSql) {
855
856
856
857
static String renderMongoAstNode (AstNode rootAstNode ) {
857
858
try (var stringWriter = new StringWriter ();
858
- var jsonWriter = new JsonWriter (stringWriter , JSON_WRITER_SETTINGS )) {
859
+ var jsonWriter = new JsonWriter (stringWriter , EXTENDED_JSON_WRITER_SETTINGS )) {
859
860
rootAstNode .render (jsonWriter );
860
861
jsonWriter .flush ();
861
862
return stringWriter .toString ();
You can’t perform that action at this time.
0 commit comments