Github user hyunsik commented on a diff in the pull request:

    https://github.com/apache/tajo/pull/762#discussion_r39640120
  
    --- Diff: tajo-docs/src/main/sphinx/sql_language/ddl.rst ---
    @@ -34,12 +37,18 @@ CREATE TABLE
     
     .. code-block:: sql
     
    -  CREATE TABLE [IF NOT EXISTS] <table_name> [(<column_name> <data_type>, 
... )]
    +  CREATE TABLE [IF NOT EXISTS] <table_name> [(<column_name> <data_type>, 
... )] [TABLESPACE tablespace_name]
       [using <storage_type> [with (<key> = <value>, ...)]] [AS 
<select_statement>]
     
       CREATE EXTERNAL TABLE [IF NOT EXISTS] <table_name> (<column_name> 
<data_type>, ... )
       using <storage_type> [with (<key> = <value>, ...)] LOCATION '<path>'
     
    +*Description*
    +
    +In Tajo, there are two types of tables, `managed table` and `external 
table` (For more information, please refer to 
:doc:`/table_management/table_overview`.)
    +
    +Managed tables are placed on some predefined tablespaces. The 
``TABLESPACE`` clause is to specify a tablespace for this table. For more 
information about tablespace, please refer to 
:doc:`/table_management/tablespaces`. For external tables, Tajo allows 
arbitrary table location with the ``LOCATION`` clause.
    --- End diff --
    
    ``arbitrary table`` should be ``an arbitrary``.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to