You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by ji...@apache.org on 2017/03/29 00:08:29 UTC

[25/40] incubator-quickstep git commit: Touch up instructions.

Touch up instructions.


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/42bf626d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/42bf626d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/42bf626d

Branch: refs/heads/new-op
Commit: 42bf626d6ee922e30334b835c793ff6607a89051
Parents: f42c726
Author: Jignesh Patel <jm...@hotmail.com>
Authored: Tue Mar 21 21:51:24 2017 -0500
Committer: Jignesh Patel <jm...@hotmail.com>
Committed: Tue Mar 21 21:51:24 2017 -0500

----------------------------------------------------------------------
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/42bf626d/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 9a40db7..cfb263c 100644
--- a/README.md
+++ b/README.md
@@ -56,8 +56,8 @@ The SQL surface of Quickstep is small (it will grow over time). The
 traditional SQL CREATE TABLE and SELECT statements work. The data types
 that are supported include INTEGER, FLOAT, DOUBLE, VARCHAR, CHAR, DATE,
 and DATETIME. Quickstep also does not have support for NULLS or keys (yet).
-Let create two tables by typing into the Quickstep shell (which you opened
-in the step above.
+Let us create two tables by typing into the Quickstep shell (which you opened
+in the step above), the following SQL command:
 
 ```
 CREATE TABLE Weather (cid INTEGER, recordDate DATE, highTemperature FLOAT, lowTemperature FLOAT);
@@ -78,7 +78,7 @@ CREATE TABLE City (cid Integer, name VARCHAR(80), state CHAR(2));
     INSERT INTO Weather VALUES (2, '2015-11-1', 60, 50);
     ```
 
-11. Now we can issue SQL queries such as:
+11. We can now can issue SQL queries such as:
   a. Find all weather records for California:
   ```
   SELECT * FROM WEATHER W, City C WHERE C.cid = W.cid AND C.state = 'CA';