Skip to content

Commit

Permalink
Remove extra space at end of line
Browse files Browse the repository at this point in the history
  • Loading branch information
yuokada authored and electrum committed Mar 17, 2017
1 parent 55eb149 commit 4e7b176
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions presto-docs/src/main/sphinx/connector/blackhole.rst
Expand Up @@ -68,9 +68,9 @@ Now query it::

The above query will return 1,000,000,000.

Length of variable length columns can be controled using ``field_length``
Length of variable length columns can be controled using ``field_length``
table property (default value is equal to 16)::

CREATE TABLE blackhole.test.nation (
nationkey bigint,
name varchar
Expand Down
2 changes: 1 addition & 1 deletion presto-docs/src/main/sphinx/overview/concepts.rst
Expand Up @@ -275,4 +275,4 @@ and what splits are being processed by which tasks.

.. NOTE: Chapter for Connectors
.. NOTE: Explain how to use the Cassandra connector
.. NOTE: Explain how to use the Cassandra connector
4 changes: 2 additions & 2 deletions presto-docs/src/main/sphinx/release/release-0.124.rst
Expand Up @@ -20,9 +20,9 @@ General Changes
Note that Presto currently does not ship with any system access controller
implementations.
* Add support for ``WITH NO DATA`` syntax in ``CREATE TABLE ... AS SELECT``.
* Fix issue where invalid plans are generated for queries with multiple aggregations
* Fix issue where invalid plans are generated for queries with multiple aggregations
that require input values to be cast in different ways.
* Fix performance issue due to redundant processing in queries involving ``DISTINCT``
* Fix performance issue due to redundant processing in queries involving ``DISTINCT``
and ``LIMIT``.
* Add optimization that can reduce the amount of data sent over the network
for grouped aggregation queries. This feature can be enabled by
Expand Down
2 changes: 1 addition & 1 deletion presto-docs/src/main/sphinx/rest.rst
Expand Up @@ -66,4 +66,4 @@ Task Resource

A stage contains a number of components, one of which is a
task. This resource is used by internal components to coordinate
the execution of stages.
the execution of stages.
4 changes: 2 additions & 2 deletions presto-docs/src/main/sphinx/sql/insert.rst
Expand Up @@ -42,10 +42,10 @@ Insert a single row into the ``nation`` table with the specified column list::
INSERT INTO nation (nationkey, name, regionkey, comment)
VALUES (26, 'POLAND', 3, 'no comment');

Insert a row without specifying the ``comment`` column.
Insert a row without specifying the ``comment`` column.
That column will be ``null``::

INSERT INTO nation (nationkey, name, regionkey)
INSERT INTO nation (nationkey, name, regionkey)
VALUES (26, 'POLAND', 3);

See Also
Expand Down

0 comments on commit 4e7b176

Please sign in to comment.