fix index function output

修复mysql索引导出函数不准确问题。
This commit is contained in:
谢小军
2020-06-08 19:21:25 +08:00
parent bff23cddda
commit 3b9ca78b82
8 changed files with 56 additions and 44 deletions

View File

@@ -58,5 +58,5 @@
`FetchByPrimaryKey` : Primary key acquisition
`FetchByUnique` : Get by unique index
`FetchBy[xxx]Index` : Composite index fetch (multiple returned)
`FetchBy[xxx]UniqueIndex` : Unique composite index fetch (return one)
`FetchIndexBy[xxx]` : Composite index fetch (multiple returned)
`FetchUniqueIndexBy[xxx]` : Unique composite index fetch (return one)

View File

@@ -54,5 +54,5 @@
### 索引方式获取
`FetchByPrimaryKey` : 主键获取
`FetchByUnique` : 唯一索引方式获取
`FetchBy[xxx]Index` : 复合索引获取(返回多个)
`FetchBy[xxx]UniqueIndex` : 唯一复合索引获取(返回一个)
`FetchIndexBy[xxx]` : 复合索引获取(返回多个)
`FetchUniqueIndexBy[xxx]` : 唯一复合索引获取(返回一个)