Bowen Li created FLINK-12964:
--------------------------------
Summary: add commented-out defaults to sql client yaml file to make it easier for users to adopt
Key: FLINK-12964
URL:
https://issues.apache.org/jira/browse/FLINK-12964 Project: Flink
Issue Type: Sub-task
Components: Table SQL / Client
Reporter: Bowen Li
Assignee: Bowen Li
Fix For: 1.9.0
Add defaults for catalogs, similar to existing defaults of tables and functions, e.g.
{code:java}
tables: [] # empty list
# A typical table source definition looks like:
# - name: ...
# type: source-table
# connector: ...
# format: ...
# schema: ...
# A typical view definition looks like:
# - name: ...
# type: view
# query: "SELECT ..."
# A typical temporal table definition looks like:
# - name: ...
# type: temporal-table
# history-table: ...
# time-attribute: ...
# primary-key: ...
#==============================================================================
# User-defined functions
#==============================================================================
# Define scalar, aggregate, or table functions here.
functions: [] # empty list
# A typical function definition looks like:
# - name: ...
# from: class
# class: ...
# constructor: ...
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)