From 4d64f81a5b5a64c5ba71c4a60df53bc36ed07c51 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 6 Nov 2017 03:33:27 +0000 Subject: [PATCH] spelling: multiple --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd7b5c9..69a04a4 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ They may indicate a port. The default port, if unspecified, is `3306` You may provide a query or a list of queries in the following ways: - single query, `-q "select @@global.server_id"` - multiple queries, semicolon delimited: `-q "select @@global.server_id; set global slave_net_timeout:=10"` -- single or mutiple queries from text file: `-Q /path/to/queries.sql` +- single or multiple queries from text file: `-Q /path/to/queries.sql` Queries are delimited by a semicolon (`;`). The last query may, but does not have to, be terminated by a semicolon. Quotes are respected, up to a reasonable level. It is valid to include a semicolon in a quoted text, as in `select 'single;query'`. However `ccql` does not employ a full blown parser, so please don't overdo it. For example, the following may not be parsed correctly: `select '\';\''`. You get it.