Skip to content

Commit 3bb4bd0

Browse files
committed
Remove unneeded set of effects sql in SqlGenerator
1 parent d4a2ad7 commit 3bb4bd0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Stores/SqlServer/Cleipnir.ResilientFunctions.SqlServer/SqlGenerator.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,6 @@ public StoreCommand GetEffects(StoredId storedId, string paramPrefix = "")
184184

185185
public async Task<IReadOnlyList<StoredEffect>> ReadEffects(SqlDataReader reader)
186186
{
187-
_getEffectsSql ??= @$"
188-
SELECT StoredId, EffectId, Status, Result, Exception
189-
FROM {tablePrefix}_Effects
190-
WHERE FlowType = @FlowType AND FlowInstance = @FlowInstance";
191-
192187
var storedEffects = new List<StoredEffect>();
193188
while (reader.HasRows && await reader.ReadAsync())
194189
{

0 commit comments

Comments
 (0)