去掉了obscure这个配置项

This commit is contained in:
Xu Chang 2024-12-16 17:41:11 +08:00
parent 19f1be266b
commit 42b1f789e3
2 changed files with 0 additions and 2 deletions

View File

@ -25,7 +25,6 @@ type FilterPart<A extends string, F extends Object | undefined> = {
export type SelectOption = {
dontCollect?: boolean;
blockTrigger?: true;
obscure?: boolean;
forUpdate?: true | 'skip locked' | 'nowait';
includedDeleted?: true;
ignoreAttrMiss?: true;

View File

@ -30,7 +30,6 @@ type FilterPart<A extends string, F extends Object | undefined> = {
export type SelectOption = {
dontCollect?: boolean;
blockTrigger?: true;
obscure?: boolean; // 如果为置为true则在filter过程中因数据不完整而不能判断为真的时候都假设为真前端缓存专用
forUpdate?: true | 'skip locked' | 'nowait'; // mysql 8.0以上支持的加锁方式
includedDeleted?: true; // 是否包含删除行的信息
ignoreAttrMiss?: true; // 作为cache时是否允许属性缺失