very thanks
--
View this message in context:
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/how-can-handles-Any-All-query-on-flink-tp1997p2067.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at
Nabble.com.
ride def filter(value: Product): Boolean = !bcSet.forall(value.model
> <= _)
> }).withBroadcastSet(pcModels, "pcModels").distinct("maker").map(_.maker)
>
>
>
>
>
> --
> View this message in context:
> http://apache-flink-user-mailing-list-
ng-list-archive.2336050.n4.nabble.com/how-can-handles-Any-All-query-on-flink-tp1997p2009.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at
Nabble.com.
/flink/flink-docs-master/apis/programming_guide.html#broadcast-variables
> On Jul 11, 2015, at 5:00 AM, hagersaleh wrote:
>
> please help
>
>
>
> --
> View this message in context:
> http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/how-can-han
please help
--
View this message in context:
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/how-can-handles-Any-All-query-on-flink-tp1997p2005.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at
Nabble.com.
how can handles Any , All query on flink
Example
SELECT model, price
FROM Laptop
WHERE price > ALL
(SELECT price
FROM PC);
Example on any
SELECT DISTINCT maker
FROM Product
WHERE model > ANY
(SELECT model
FROM PC);
--
View this message in context:
http://