-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--------- Co-authored-by: Pavel_Shilin <[email protected]>
- Loading branch information
1 parent
5d426e5
commit 07b8c33
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
––– block: ./base/init ––– | ||
––– input ––– | ||
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 $? | ||
––– output ––– | ||
#!/[a-z0-9]{40}$/!# | ||
Waiting for Manticore docker to start. Consider mapping the data_dir to make it start faster next time | ||
#!/.*\.0$/!# | ||
––– input ––– | ||
docker exec manticore mysql -e "source /sandbox.sql" | ||
––– output ––– | ||
––– input ––– | ||
docker exec manticore mysql -e "SHOW TABLES\G" | ||
––– output ––– | ||
*************************** 1. row *************************** | ||
Index: films | ||
Type: rt | ||
––– input ––– | ||
docker exec manticore mysql -e "SELECT * FROM films LIMIT 3\G" | ||
––– output ––– | ||
*************************** 1. row *************************** | ||
id: 19 | ||
title: AMADEUS HOLY | ||
description: A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon | ||
category_id: 1 | ||
release_year: 2008 | ||
rental_rate: 0.990000 | ||
*************************** 2. row *************************** | ||
id: 21 | ||
title: AMERICAN CIRCUS | ||
description: A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank | ||
category_id: 1 | ||
release_year: 2009 | ||
rental_rate: 4.990000 | ||
*************************** 3. row *************************** | ||
id: 29 | ||
title: ANTITRUST TOMATOES | ||
description: A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India | ||
category_id: 1 | ||
release_year: 2005 | ||
rental_rate: 2.990000 |