Skip to content

Commit

Permalink
Update test-one-liner.rec
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel_Shilin committed Nov 22, 2023
1 parent c2c46a0 commit f24c6a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clt_tests/tests/test-one-liner.rec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
––– block: ./base/init –––
––– input –––
docker run -e EXTRA=1 --name manticore --rm -d manticoresearch/manticore:dev && echo "Waiting for Manticore docker to start. Consider mapping the data_dir to make it start faster next time" && until docker logs manticore 2>&1 | grep -q "accepting connections"; do sleep 1; echo -n .; done && echo && docker exec -it manticore mysql && docker stop manticore
docker run -e EXTRA=1 --name manticore --rm -d manticoresoftware/manticore:current && echo "Waiting for Manticore docker to start. Consider mapping the data_dir to make it start faster next time" && until docker logs manticore 2>&1 | grep -q "accepting connections"; do sleep 1; echo -n .; done && echo && docker exec -it manticore mysql && docker stop manticore
––– output –––
––– input –––
sleep 5;docker logs manticore | grep "accepting connections"
Expand All @@ -10,9 +10,9 @@ accepting connections
docker exec manticore mysql -e "source /sandbox.sql"
––– output –––
––– input –––
mysql -e "SHOW TABLES\G;"
docker exec manticore mysql -e "SHOW TABLES\G"
––– output –––
––– output –––
––– input –––
mysql -e "SELECT * FROM films\G;"
docker exec manticore mysql -e "SELECT * FROM films LIMIT 5\G"
––– output –––

0 comments on commit f24c6a7

Please sign in to comment.