Skip to content

Commit d70ba54

Browse files
fix(api): update getDescribe and getSchema requests params
1 parent ccefbff commit d70ba54

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/services/api.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,11 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
8383
path,
8484
enums: true,
8585
backup: false,
86+
private: true,
87+
partition_config: false,
8688
partition_stats: false,
8789
partitioning_info: false,
90+
subs: 1,
8891
},
8992
{concurrentId: concurrentId || `getSchema|${path}`},
9093
);
@@ -93,6 +96,8 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
9396
return this.get(this.getPath('/viewer/json/describe'), {
9497
path,
9598
enums: true,
99+
partition_stats: true,
100+
subs: 0,
96101
});
97102
}
98103
getSchemaAcl({path}) {

0 commit comments

Comments
 (0)