fix of empty projection

master
xieguigang 5 years ago
parent 7756a2b27b
commit dfd4f3508d

@ -98,7 +98,13 @@ Namespace Interpreter.Query
Next
If Not skipVal Then
projections.Add(project.Exec(closure))
If project Is Nothing Then
' SELECT
'
projections.Add(item)
Else
projections.Add(project.Exec(closure))
End If
End If
Next

@ -3,4 +3,4 @@ imports "Sqlite3"
FROM x as table("GenePathways")
IN "E:\GCModeller\src\runtime\Darwinism\LINQ\test\xcc.db"
WHERE x.pid = 11
ORDER BY x.gid
ORDER BY gid
Loading…
Cancel
Save