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

Closed
stefandrissen opened this issue Apr 11, 2023 · 1 comment
Closed

Variable used in function in where phrase updated #1041

stefandrissen opened this issue Apr 11, 2023 · 1 comment

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.

@gquerret gquerret changed the title variable used in function in where phrase updated Variable used in function in where phrase updated Jul 3, 2024
@gquerret
Copy link
Contributor

gquerret commented Jul 8, 2024

Included in 2.27

@gquerret gquerret closed this as completed Jul 8, 2024
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