the request that contains OR in the query works very slowly. For example:
---
select top 10
pm, ra, dec
from gaia_dr3.gaia_source
where pm < 1
----
and
---
select top 10
pm, ra, dec
from gaia_dr3.gaia_source
where
pm > 2
---
but the query:
select top 10
pm, ra, dec
from gaia_dr3.gaia_source
where pm < 1 OR pm > 2
works very slowly.
Any suggestions?