Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

variable used in function in where phrase updated #1041

Open
stefandrissen opened this issue Apr 11, 2023 · 0 comments
Open

variable used in function in where phrase updated #1041

stefandrissen opened this issue Apr 11, 2023 · 0 comments

Comments

@stefandrissen
Copy link

I just ran into some silly optimization by myself where I moved an if condition into the query phrase:

def var cfilter as char.

define temp-table tt
   field cc as char
   .
   
create tt. tt.cc = '1'.   
create tt. tt.cc = '1'.
   
for each tt where lookup( tt.cc, cfilter ) = 0: // was if
   cfilter = cfilter + ',' + tt.cc.
end.

Since the lookup is only evaluated when the query starts, a subsequent update of that variable could / should be flagged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants