epugh commented on PR #1182:
URL: https://github.com/apache/solr/pull/1182#issuecomment-1502044312
Okay, it looks like the reason that the `SQL Module` test is failing is that
the we need now to use `%20` instead of `+` for the spaces in the url...
```
@@ -32,7 +32,7 @@ teardown() {
@test "SQL Module" {
run solr start -c -Dsolr.modules=sql
run solr create_collection -c COLL_NAME
- run solr api -get
http://localhost:8983/solr/COLL_NAME/sql?stmt=select+id+from+COLL_NAME+limit+10
+ run solr api -get
http://localhost:8983/solr/COLL_NAME/sql?stmt=select%20id%20from%20COLL_NAME%20limit%2010
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]