[GitHub] flink pull request #4894: [FLINK-7548] [table] Improve rowtime support of Ta...

2017-10-29 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4894#discussion_r147580191 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/nodes/datastream/StreamTableSourceScan.scala --- @@ -56,33 +63,123 @@ class

[GitHub] flink pull request #4894: [FLINK-7548] [table] Improve rowtime support of Ta...

2017-10-29 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4894#discussion_r147582469 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/CsvTableSource.scala --- @@ -38,23 +38,26 @@ import

[GitHub] flink pull request #4894: [FLINK-7548] [table] Improve rowtime support of Ta...

2017-10-29 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4894#discussion_r147574828 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/TableSourceUtil.scala --- @@ -0,0 +1,518 @@ +/* + * Licensed to

[GitHub] flink pull request #4894: [FLINK-7548] [table] Improve rowtime support of Ta...

2017-10-29 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4894#discussion_r147583120 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/FieldComputer.scala --- @@ -0,0 +1,63 @@ +/* + * Licensed to the

[GitHub] flink pull request #4934: [FLINK-7800] [table] Enable window joins without e...

2017-11-01 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/4934 [FLINK-7800] [table] Enable window joins without equi-join predicates ## What is the purpose of the change This PR enables the stream window joins without equi-join predicates

[GitHub] flink issue #4790: [FLINK-7764] [kafka] Enable the operator settings for Fli...

2017-11-01 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/4790 Hi @aljoscha, I wonder if you could take a look at this PR (as well as #4819) when you are convenient. Thanks! ---

[GitHub] flink pull request #4819: [FLINK-7764] [kafka] Fix the operator setting prob...

2017-11-02 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/4819 ---

[GitHub] flink issue #4819: [FLINK-7764] [kafka] Fix the operator setting problem of ...

2017-11-02 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/4819 Thanks @aljoscha. Will close this PR. ---

[GitHub] flink issue #4790: [FLINK-7764] [kafka] Enable the operator settings for Fli...

2017-11-02 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/4790 Thanks! ---

[GitHub] flink pull request #4790: [FLINK-7764] [kafka] Enable the operator settings ...

2017-11-02 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/4790 ---

[GitHub] flink pull request #4471: [FLINK-6094] [table] Implement stream-stream proct...

2017-11-04 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4471#discussion_r148948471 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/runtime/join/DataStreamInnerJoin.scala --- @@ -0,0 +1,287

[GitHub] flink pull request #4471: [FLINK-6094] [table] Implement stream-stream proct...

2017-11-04 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/4471#discussion_r148948528 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/plan/rules/datastream/DataStreamJoinRule.scala --- @@ -0,0 +1,112

[GitHub] flink pull request #4977: [FLINK-7996] [table] Add support for (left.time = ...

2017-11-07 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/4977 [FLINK-7996] [table] Add support for (left.time = right.time) predicates to window join ## What is the purpose of the change This PR adds `left.time = right.time` predicates support for time

[GitHub] flink pull request #5016: [FLINK-8069] [table] Support empty watermark strat...

2017-11-14 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5016 [FLINK-8069] [table] Support empty watermark strategy for TableSources ## What is the purpose of the change This PR enables an empty watermark strategy for `RowtimeAttributeDescriptor

[GitHub] flink issue #5016: [FLINK-8069] [table] Support empty watermark strategy for...

2017-11-15 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5016 Thanks for the review @fhueske. I think you are right. A dedicated `WatermarkStrategy` with watermark-preserve semantics should be better. I'll update the PR according to your comments. Thanks. ---

[GitHub] flink issue #5016: [FLINK-8069] [table] Support empty watermark strategy for...

2017-11-16 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5016 Hi @fhueske, the PR has been updated. During the refactoring, I got two questions. 1. Do you think it's still necessary to allow the watermark strategy to be `null`? 2. Currentl

[GitHub] flink pull request #5025: [FLINK-8096] [table] Fix time material issue when ...

2017-11-16 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5025#discussion_r151604198 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/StreamTableEnvironment.scala --- @@ -234,11 +234,12 @@ abstract class

[GitHub] flink pull request #5025: [FLINK-8096] [table] Fix time material issue when ...

2017-11-16 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5025#discussion_r151604024 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/stream/TimeAttributesITCase.scala --- @@ -179,6 +179,32 @@ class

[GitHub] flink pull request #5025: [FLINK-8096] [table] Fix time material issue when ...

2017-11-16 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5025#discussion_r151613194 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/StreamTableEnvironment.scala --- @@ -234,11 +234,12 @@ abstract class

[GitHub] flink pull request #5025: [FLINK-8096] [table] Fix time material issue when ...

2017-11-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5025#discussion_r151637017 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/StreamTableEnvironment.scala --- @@ -234,11 +234,12 @@ abstract class

[GitHub] flink pull request #5032: [FLINK-8090] [DataStream] Improve the error messag...

2017-11-17 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5032 [FLINK-8090] [DataStream] Improve the error message for duplicate state name ## What is the purpose of the change This PR improves the error message when users trying to access two states of

[GitHub] flink pull request #4297: [FLINK-6936] [streaming] Add multiple targets supp...

2017-11-17 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/4297 ---

[GitHub] flink issue #5032: [FLINK-8090] [DataStream] Improve the error message for d...

2017-11-18 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5032 Hi @bowenli86, thanks for the review. This PR only changes the message of `RuntimeException`, thus may not be easily verified. To improve that, we'd add some dedicated exceptions for that. What d

[GitHub] flink pull request #5032: [FLINK-8090] [DataStream] Improve the error messag...

2017-11-21 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5032#discussion_r152454242 --- Diff: flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/StreamingRuntimeContextTest.java --- @@ -270,6 +271,20 @@ public void

[GitHub] flink pull request #5056: [FLINK-8118] [table] Allow specifying reading offs...

2017-11-23 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5056 [FLINK-8118] [table] Allow specifying reading offsets of KafkaTableSources ## What is the purpose of the change This PR enables the kafka table source builder to specify start reading

[GitHub] flink issue #5056: [FLINK-8118] [table] Allow specifying reading offsets of ...

2017-11-23 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5056 Hi @fhueske, thanks for the review! The PR has been updated according to your comments. Thanks, Xingcan ---

[GitHub] flink pull request #5056: [FLINK-8118] [table] Allow specifying reading offs...

2017-11-23 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5056#discussion_r152797724 --- Diff: docs/dev/table/sourceSinks.md --- @@ -264,6 +288,30 @@ val source: TableSource[_] = Kafka010AvroTableSource.builder

[GitHub] flink issue #5032: [FLINK-8090] [DataStream] Improve the error message for d...

2017-11-24 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5032 Hi @aljoscha, I wonder if you could help review this PR when you are convenient. Thanks, Xingcan ---

[GitHub] flink pull request #5068: [FLINK-8122] [table] Name all built-in table sinks...

2017-11-25 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5068 [FLINK-8122] [table] Name all built-in table sinks and sources ## What is the purpose of the change This PR adds names for all built-in table sources and sinks. ## Brief change log

[GitHub] flink pull request #5068: [FLINK-8122] [table] Name all built-in table sinks...

2017-11-27 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5068#discussion_r153179456 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/TableSource.scala --- @@ -60,4 +60,14 @@ trait TableSource[T

[GitHub] flink pull request #5068: [FLINK-8122] [table] Name all built-in table sinks...

2017-11-27 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5068#discussion_r153182297 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/TableSource.scala --- @@ -60,4 +60,14 @@ trait TableSource[T

[GitHub] flink issue #5032: [FLINK-8090] [DataStream] Improve the error message for d...

2017-11-27 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5032 Thanks for the suggestion @aljoscha. The problem is the state type is provided via a generic type parameter `S extends State`, which will be erased in runtime. Thus it's hard to do

[GitHub] flink pull request #5068: [FLINK-8122] [table] Name all built-in table sinks...

2017-11-28 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5068#discussion_r153432702 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sources/TableSource.scala --- @@ -60,4 +60,14 @@ trait TableSource[T

[GitHub] flink issue #5094: [FLINK-8158] [table] Fix rowtime window inner join emits ...

2017-11-28 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5094 Hi @hequn8128, thanks for looking into this. I've checked the current implementation and found that it really may emit late data. However, that was caused by the checkings below:

[GitHub] flink issue #5094: [FLINK-8158] [table] Fix rowtime window inner join emits ...

2017-11-28 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5094 Hi @hequn8128, let me try to explain this. 1. In current implementation, the join process just relies on the cached rows instead of the watermarks. Specifically, when receiving a record, the

[GitHub] flink issue #5094: [FLINK-8158] [table] Fix rowtime window inner join emits ...

2017-11-29 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5094 Hi @hequn8128, as @fhueske explained, watermarks should not define the semantics of the join. We just emit join results, in spite of whether they are late and the join function should not care about

[GitHub] flink issue #5094: [FLINK-8158] [table] Fix rowtime window inner join emits ...

2017-11-30 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5094 Never mind~ Thanks for reminding me of the ideas :-) ---

[GitHub] flink pull request #6356: [FLINK-9790] [doc] Add documentation for UDF in SQ...

2018-07-17 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/6356 [FLINK-9790] [doc] Add documentation for UDF in SQL Client ## What is the purpose of the change This PR aims to add document for UDF in SQL Client. ## Brief change log

[GitHub] flink pull request #4297: [FLINK-6936] [streaming] Add multiple targets supp...

2017-07-11 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/4297 [FLINK-6936] [streaming] Add multiple targets support for custom partitioner Thanks for contributing to Apache Flink. Before you open your pull request, please take the following check list into

[GitHub] flink pull request #6106: [hotfix][table] Remove a println statement

2018-05-31 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/6106 [hotfix][table] Remove a println statement ## What is the purpose of the change Remove a `println` statement in `TimeBoundedStreamJoin`. ## Brief change log Remove a

[GitHub] flink issue #6106: [hotfix][table] Remove a println statement

2018-05-31 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6106 It's my fault. Sorry about that:see_no_evil: ---

[GitHub] flink issue #6106: [hotfix][table] Remove a println statement

2018-05-31 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6106 Merging this. ---

[GitHub] flink pull request #6106: [hotfix][table] Remove a println statement

2018-05-31 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/6106 ---

[GitHub] flink pull request #5660: [FLINK-8861] [table] Add support for batch queries...

2018-06-10 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5660#discussion_r194250975 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/cli/CliTableResultView.java --- @@ -159,6 +160,9 @@ protected void

[GitHub] flink issue #5660: [FLINK-8861] [table] Add support for batch queries in SQL...

2018-06-10 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5660 Hi @twalthr, the PR has been reworked. Take a look when you are convenient. Thanks! ---

[GitHub] flink issue #5660: [FLINK-8861] [table] Add support for batch queries in SQL...

2018-06-11 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5660 Thanks for the improvements, @twalthr. ---

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196994767 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/config/UDFDescriptor.java --- @@ -0,0 +1,153

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196995241 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/gateway/local/ExecutionContext.java --- @@ -101,6 +110,16 @@ public

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196995191 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/config/UDFDescriptor.java --- @@ -0,0 +1,153

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196995942 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/gateway/local/ExecutionContext.java --- @@ -187,6 +206,7 @@ private

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196996002 --- Diff: flink-libraries/flink-sql-client/src/test/java/org/apache/flink/table/client/gateway/local/LocalExecutorITCase.java --- @@ -145,6 +146,68 @@ public

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196996876 --- Diff: flink-libraries/flink-sql-client/src/test/java/org/apache/flink/table/client/gateway/utils/UserDefinedFunctions.java --- @@ -0,0 +1,105

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r196998269 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/PrimitiveTypeValidator.scala --- @@ -0,0 +1,72

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-20 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r197005582 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/PrimitiveTypeDescriptor.scala --- @@ -0,0 +1,56

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-27 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r198482931 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/config/UDFDescriptor.java --- @@ -0,0 +1,153

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-27 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r198484614 --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/gateway/local/ExecutionContext.java --- @@ -187,6 +206,7 @@ private

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-06-27 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6090#discussion_r198485307 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/PrimitiveTypeDescriptor.scala --- @@ -0,0 +1,56

[GitHub] flink issue #6090: [FLINK-8863] [SQL] Add user-defined function support in S...

2018-06-27 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6090 Hi @twalthr, sorry for the delay. I've been quite busy with my graduation these weeks. Everything's finished now and I'll put these tasks back on track. ---

[GitHub] flink issue #6090: [FLINK-8863] [SQL] Add user-defined function support in S...

2018-07-05 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6090 Hi @twalthr, please give me one more day. I will commit the changes tomorrow. 😄 ---

[GitHub] flink issue #6253: [FLINK-8094][Table API & SQL] Support other types for Exi...

2018-07-05 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6253 Hi @HeartSaVioR, really sorry for the late reply. The problem that has always been confusing me is how to configure the date format. Anyway, supporting the standard ISO one is a great first step

[GitHub] flink issue #6090: [FLINK-8863] [SQL] Add user-defined function support in S...

2018-07-06 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/6090 Hi @twalthr, I've made some changes to the PR. 1. Add a normalize method in `ClassTypeValidator` which converts the config like `constructor.0 = abc` to `constructor.0.type = STRING construc

[GitHub] flink issue #5610: [FLINK-8537][table]Add a Kafka table source factory with ...

2018-04-23 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5610 Thanks for the review @twalthr. 😄 ---

[GitHub] flink pull request #6003: [FLINK-9289] Parallelism of generated operators sh...

2018-05-13 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/6003 [FLINK-9289] Parallelism of generated operators should have max parallelism of input ## What is the purpose of the change This PR aims to fix the default parallelism problem for the

[GitHub] flink pull request #5210: [FLINK-8316] [table] The CsvTableSink and the CsvI...

2018-05-13 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/5210 ---

[GitHub] flink pull request #6027: [FLINK-7814][TableAPI && SQL] Add BETWEEN and NOT ...

2018-05-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6027#discussion_r188895939 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/expressions/ScalarOperatorsTest.scala --- @@ -406,5 +406,26 @@ class

[GitHub] flink pull request #6027: [FLINK-7814][TableAPI && SQL] Add BETWEEN and NOT ...

2018-05-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6027#discussion_r188894442 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/expressions/logic.scala --- @@ -105,3 +105,75 @@ case class If

[GitHub] flink pull request #6027: [FLINK-7814][TableAPI && SQL] Add BETWEEN and NOT ...

2018-05-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6027#discussion_r188895005 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/expressions/ScalarOperatorsTest.scala --- @@ -406,5 +406,26 @@ class

[GitHub] flink pull request #6027: [FLINK-7814][TableAPI && SQL] Add BETWEEN and NOT ...

2018-05-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6027#discussion_r188891077 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/scala/expressionDsl.scala --- @@ -809,6 +809,23 @@ trait

[GitHub] flink pull request #6027: [FLINK-7814][TableAPI && SQL] Add BETWEEN and NOT ...

2018-05-17 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/6027#discussion_r188891227 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/api/scala/expressionDsl.scala --- @@ -809,6 +809,23 @@ trait

[GitHub] flink issue #5660: [FLINK-8861] [table] Add support for batch queries in SQL...

2018-05-17 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5660 Sure @twalthr, I'll rebase the PR soon. ---

[GitHub] flink pull request #6090: [FLINK-8863] [SQL] Add user-defined function suppo...

2018-05-28 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/6090 [FLINK-8863] [SQL] Add user-defined function support in SQL Client ## What is the purpose of the change This PR aims to add user-defined function (ScalarFunction, TableFunction and

[GitHub] flink pull request #5564: [FLINK-8538] [table] Add a Kafka table source fact...

2018-02-28 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5564#discussion_r171280725 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -67,14 +85,129 @@ class SchemaValidator

[GitHub] flink pull request #5564: [FLINK-8538] [table] Add a Kafka table source fact...

2018-02-28 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5564#discussion_r171354820 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -67,14 +85,129 @@ class SchemaValidator

[GitHub] flink pull request #5610: [FLINK-8537][table]Add a Kafka table source factor...

2018-03-01 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5610 [FLINK-8537][table]Add a Kafka table source factory with Avro format support ## What is the purpose of the change This PR adds the Kafka table source factory with Avro format

[GitHub] flink issue #5610: [FLINK-8537][table]Add a Kafka table source factory with ...

2018-03-01 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5610 Hi @twalthr @fhueske, I wonder if you could help review this PR when you are convenient. Thanks, Xingcan ---

[GitHub] flink pull request #5659: [FLINK-8661] [table] Add support for batch queries...

2018-03-07 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5659 [FLINK-8661] [table] Add support for batch queries in SQL Client ## What is the purpose of the change This PR added support for batch queries in SQL Client. ## Brief change log

[GitHub] flink pull request #5659: [FLINK-8661] [table] Add support for batch queries...

2018-03-07 Thread xccui
Github user xccui closed the pull request at: https://github.com/apache/flink/pull/5659 ---

[GitHub] flink pull request #5660: [FLINK-8861] [table] Add support for batch queries...

2018-03-07 Thread xccui
GitHub user xccui opened a pull request: https://github.com/apache/flink/pull/5660 [FLINK-8861] [table] Add support for batch queries in SQL Client ## What is the purpose of the change This PR added support for batch queries in SQL Client. ## Brief change log

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-09 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173455747 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -198,14 +205,20 @@ object

[GitHub] flink issue #5662: [FLINK-8854] [table] Fix schema mapping with time attribu...

2018-03-09 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5662 Thanks for the explanation, @twalthr! I'll update the PR and resolve the conflicts caused. ---

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173784883 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -148,6 +148,13 @@ object SchemaValidator

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173791129 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -148,6 +148,13 @@ object SchemaValidator

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173857218 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/descriptors/SchemaValidator.scala --- @@ -148,6 +148,13 @@ object SchemaValidator

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173860901 --- Diff: flink-connectors/flink-connector-kafka-base/src/test/java/org/apache/flink/streaming/connectors/kafka/KafkaJsonTableSourceFactoryTestBase.java

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173879267 --- Diff: flink-connectors/flink-connector-kafka-base/src/test/java/org/apache/flink/streaming/connectors/kafka/KafkaJsonTableSourceFactoryTestBase.java

[GitHub] flink issue #5610: [FLINK-8537][table]Add a Kafka table source factory with ...

2018-03-12 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5610 Hi @twalthr, I've rebased this PR and fixed some problems. ---

[GitHub] flink pull request #5662: [FLINK-8854] [table] Fix schema mapping with time ...

2018-03-12 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5662#discussion_r173888555 --- Diff: flink-connectors/flink-connector-kafka-base/src/test/java/org/apache/flink/streaming/connectors/kafka/KafkaJsonTableSourceFactoryTestBase.java

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174338955 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174338947 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174339810 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/stream/table/QueryableTableSinkTest.scala --- @@ -0,0 +1,102

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174339658 --- Diff: flink-libraries/flink-table/src/test/scala/org/apache/flink/table/runtime/stream/table/QueryableTableSinkTest.scala --- @@ -0,0 +1,102

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174338981 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174338993 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174339296 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-13 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174338968 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,175 @@ +/* + * Licensed to

[GitHub] flink pull request #5688: [FLINK-6968][Table API & SQL] Add Queryable table ...

2018-03-14 Thread xccui
Github user xccui commented on a diff in the pull request: https://github.com/apache/flink/pull/5688#discussion_r174511059 --- Diff: flink-libraries/flink-table/src/main/scala/org/apache/flink/table/sinks/QueryableTableSink.scala --- @@ -0,0 +1,162 @@ +/* + * Licensed to

[GitHub] flink issue #5660: [FLINK-8861] [table] Add support for batch queries in SQL...

2018-03-14 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5660 Hi @twalthr and @fhueske, the PR has been rebased. I wonder if you could help review it when you are convenient. Thanks~ ---

[GitHub] flink issue #5660: [FLINK-8861] [table] Add support for batch queries in SQL...

2018-03-15 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5660 I see, @twalthr. Sorry for my impatience. ---

[GitHub] flink issue #5068: [FLINK-8122] [table] Name all built-in table sinks and so...

2017-12-04 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5068 Hi @fhueske, do you think the PR needs some other updates? ---

[GitHub] flink issue #5068: [FLINK-8122] [table] Name all built-in table sinks and so...

2017-12-07 Thread xccui
Github user xccui commented on the issue: https://github.com/apache/flink/pull/5068 Thanks for the review @fhueske. * I added the `explainSink()` method to make the `TableSink` consistent with the `TableSource`. Discarding this method and using the

<    1   2   3   >