Skip to content

Commit 4ab96a3

Browse files
committed
Fix for issue #33
Data table node wasn't working on PostgreSQL/SQLServer.
1 parent dbeaeae commit 4ab96a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Engine/NodeBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public string GetFetchDataQuery(int? startRow = null, int? rowCount = null)
217217
{
218218
var query = new StringBuilder();
219219

220-
if (this is DataProcessorNode && (DatabaseType == DatabaseType.SQLServer || DatabaseType == DatabaseType.PostgreSQL))
220+
if (DatabaseType == DatabaseType.SQLServer || DatabaseType == DatabaseType.PostgreSQL)
221221
{
222222
IList<NodeBase> nodes = new List<NodeBase>();
223223
FetchOrderedDependencies(nodes);

0 commit comments

Comments
 (0)