File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -794,6 +794,10 @@ def format_view_link(body: Json) -> Json:
794
794
result ["track_list_positions" ] = body ["trackListPositions" ]
795
795
if "storeValues" in body :
796
796
result ["store_values" ] = body ["storeValues" ]
797
+ if "primaryKeyCache" in body :
798
+ result ["primaryKeyCache" ] = body ["primaryKeyCache" ]
799
+ if "companies" in body :
800
+ result ["companies" ] = body ["companies" ]
797
801
798
802
return verify_format (body , result )
799
803
@@ -882,9 +886,7 @@ def format_view(body: Json) -> Json:
882
886
if "writebufferSizeMax" in body :
883
887
result ["writebuffer_max_size" ] = body ["writebufferSizeMax" ]
884
888
if "links" in body :
885
- result ["links" ] = {
886
- name : format_view_link (link ) for name , link in body ["links" ].items ()
887
- }
889
+ result ["links" ] = body ["links" ]
888
890
if "indexes" in body :
889
891
result ["indexes" ] = {
890
892
name : format_view_index (idx ) for name , idx in body ["indexes" ].items ()
You can’t perform that action at this time.
0 commit comments