Results 21 comments of LaiZhou

found a related issue. [https://github.com/AlmasB/FXGL/issues/644](https://github.com/AlmasB/FXGL/issues/644)

Update. ``` module FlappyBird { requires com.almasb.fxgl.all; opens assets.music; opens assets.sounds; opens assets.textures; opens com.almasb.fxglgames.flappy; exports com.almasb.fxglgames.flappy; } ``` I try to create every sub-pakcage of assets ,and opens them,...

``` open module FlappyBird { requires com.almasb.fxgl.all; exports com.almasb.fxglgames.flappy; } ``` @AlmasB I tried it, still failed, it showed the same error. The steps. execute the command ``` mvn clean...

@jramnara `select * from t1 where user_id='1'` this job will use 56 tasks, I set the lead conf: -spark.executor.cores=100, and the number of this server cores is 56. I think...

``` CREATE TABLE t0 ( user_id varchar(100) , order_original_id bigint NOT NULL PRIMARY KEY ,apply_time string,loan_type int,is_eff int) USING ROW OPTIONS (PARTITION_BY 'user_id') create table t1(user_id varchar(100),order_original_id varchar(100),apply_time string,bill_cnt bigint)USING...

``` insert into t2(user_id,order_original_id,apply_time,bill_cnt) values('1','1','2018-01-01',100) insert into t2(user_id,order_original_id,apply_time,bill_cnt) values('1','1','2018-01-01',101) insert into t2(user_id,order_original_id,apply_time,bill_cnt) values('2','2','2018-01-01',101) select a.*,b.* from ( select user_id ,order_original_id ,apply_time,sum(bill_cnt) from t1 where user_id='1' and order_original_id='1' group by user_id...

I first use column tables , but I worry index may not be well supported in release 1.0.1. I make a test: create index on a column table->insert into a...

need I maintain the whole lifecycle of the index for clolumn table ?