You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where 1=1
and (
:city is null
OR
:city = l.city
)
and (
:state is null
OR
:state = l.state
)
and (
:postal is null
OR
:postal = l.postal
)
we can just check that they're all equivalent and only output the first one if so. (maybe throw an error if not? or just don't dedupe and warn user - and they can decide? (second option is better because it does not block user))
The text was updated successfully, but these errors were encountered:
so this may be the bigger problem that needs resolved
uladkasach
changed the title
support using input variable in more than one place in query
support using input variable in more than one place in query (and w/ null)
Jul 12, 2020
right now, duplicate usage of input variable -> duplicate row in type def
from
we can just check that they're all equivalent and only output the first one if so. (maybe throw an error if not? or just don't dedupe and warn user - and they can decide? (second option is better because it does not block user))
The text was updated successfully, but these errors were encountered: