[ 
https://issues.apache.org/jira/browse/IMPALA-12793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17821007#comment-17821007
 ] 

ASF subversion and git services commented on IMPALA-12793:
----------------------------------------------------------

Commit edd1e214932b7eb2d4eaa3ac66cfe005951c0af0 in impala's branch 
refs/heads/master from wzhou-code
[ https://gitbox.apache.org/repos/asf?p=impala.git;h=edd1e2149 ]

IMPALA-12793: Create JDBC table without data source

This patch changes syntax of creating JDBC table statement as
  CREATE TABLE [IF NOT EXISTS] [db_name.]table_name
  (col_name data_type
    [constraint_specification]
    [COMMENT 'col_comment']
    [, ...]
  )
  [COMMENT 'table_comment']
  STORED BY JDBC
  TBLPROPERTIES ('key1'='value1', 'key2'='value2', ...)

Both "STORED BY JDBC" and "STORED AS JDBC" are acceptable. A table
property '__IMPALA_DATA_SOURCE_NAME' is added to the JDBC table with
value 'impalajdbcdatasource', which is shown in the output of command
'show create table'.
Following required JDBC parameters must be specified as table
properties: database.type, jdbc.url, jdbc.driver, driver.url, and table.
Otherwise, AnalysisException will be thrown.

Testing:
 - Added frontend unit tests for new syntax of creating JDBC table.
 - Updated end-to-end unit tests to create JDBC tables without data
   source.
 - Passed core tests

Change-Id: I765aa86b430246786ad85ab6857cefaf4332c920
Reviewed-on: http://gerrit.cloudera.org:8080/21016
Reviewed-by: Joe McDonnell <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>


> Change JDBC table creation syntax  
> -----------------------------------
>
>                 Key: IMPALA-12793
>                 URL: https://issues.apache.org/jira/browse/IMPALA-12793
>             Project: IMPALA
>          Issue Type: Sub-task
>          Components: Frontend
>            Reporter: Wenzhe Zhou
>            Assignee: Wenzhe Zhou
>            Priority: Major
>             Fix For: Impala 4.4.0
>
>
> We should create JDBC table without data source.
>     
> Change syntax of creating JDBC table statement as
>       CREATE TABLE [IF NOT EXISTS] [db_name.]table_name
>       (col_name data_type
>         [constraint_specification]
>         [COMMENT 'col_comment']
>         [, ...]
>       )
>       [COMMENT 'table_comment']
>       STORED BY JDBC
>       TBLPROPERTIES ('key1'='value1', 'key2'='value2', ...)



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to