When i am trying to execute below query from google API i got "message" : "Disallowed literal: 'invalid.csv'.", error.
Same query is working when i run in console https://console.cloud.google.com Select * from DatastoreTableName where column = 'column value' code used: RunQueryRequest runQueryRequest = new RunQueryRequest(); String finalQuery = "Select * from DatastoreTableName where column = 'column value'" GqlQuery gqlQuery = new GqlQuery(); gqlQuery.setQueryString(finalQuery); runQueryRequest.setGqlQuery(gqlQuery); RunQueryResponse response = dataStoreService.projects() .runQuery(getApplicationName(), runQueryRequest).execute(); Final execute statement is throwing { "domain" : "global", "message" : "Disallowed literal: 'invalid.csv'.", "reason" : "badRequest" -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/47ca4222-811a-4fee-b75d-17f6b35d7ce5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
