diff --git a/Apewer/Apewer.csproj b/Apewer/Apewer.csproj
index 671b731..9bedd6f 100644
--- a/Apewer/Apewer.csproj
+++ b/Apewer/Apewer.csproj
@@ -7,7 +7,7 @@
Apewer
Apewer
Apewer
- 6.0.7
+ 6.0.8
diff --git a/Apewer/Source/Query.cs b/Apewer/Source/Query.cs
index b36ed48..6f1951e 100644
--- a/Apewer/Source/Query.cs
+++ b/Apewer/Source/Query.cs
@@ -586,7 +586,6 @@ namespace Apewer.Source
{
var cell = TextModifier.Trim(query.Text(i));
if (string.IsNullOrEmpty(cell)) continue;
- if (list.Contains(cell)) continue; ;
list.Add(cell);
added++;
}
diff --git a/Apewer/_ChangeLog.md b/Apewer/_ChangeLog.md
index 27b46d9..f7647f0 100644
--- a/Apewer/_ChangeLog.md
+++ b/Apewer/_ChangeLog.md
@@ -5,6 +5,9 @@
### 最新提交
+### 6.0.8
+- Query.SimpleColumn 不再去重,提升性能。
+
### 6.0.7
- 修正 MySql 使用 List 时的性能问题。