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
result=Alma().query(payload={'spatial_resolution':'<0.1', 'science_keyword':
['High-mass star formation',
'Disks around high-mass stars']},
public=True)
resulting in an exception DALQueryError: ADQL syntax error: Encountered " <S_IDENTIFIER> "High "" at line 1, column 81.
The problem was a malformed ADQL query:
TAP query: select * from ivoa.obscore WHERE spatial_resolution<=0.1 AND science_keyword='['High-mass star formation', 'Disks around high-mass stars']' AND science_observation='T' AND data_rights='Public'
The solution is to do the query correctly, e.g.:
AA.tap.search("select * from ivoa.obscore WHERE spatial_resolution<=0.1 AND science_keyword in ('High-mass star formation', 'Disks around high-mass stars') AND science_observation='T' AND data_rights='Public'")
The text was updated successfully, but these errors were encountered:
I attempted this query:
resulting in an exception
DALQueryError: ADQL syntax error: Encountered " <S_IDENTIFIER> "High "" at line 1, column 81.
The problem was a malformed ADQL query:
The solution is to do the query correctly, e.g.:
The text was updated successfully, but these errors were encountered: