1
1
-- Json entity
2
- insert into json_entity (id, first_name, last_name, attributes) values
3
- (1 , ' john' , ' doe' , ' {"attr":{"key":["1","2","3","4","5"]}}' ),
4
- (2 , ' joe' , ' smith' , ' {"attr":["1","2","3","4","5"]}' );
2
+ insert into json_entity (id, first_name, last_name, attributes, json ) values
3
+ (1 , ' john' , ' doe' , ' {"attr":{"key":["1","2","3","4","5"]}}' , ' {"attr":{"key":["1","2","3","4","5"]}} ' ),
4
+ (2 , ' joe' , ' smith' , ' {"attr":["1","2","3","4","5"]}' , ' {"attr":["1","2","3","4","5"]} ' );
5
5
6
6
insert into task (id, assignee, business_key, created_date, description, due_date, last_modified, last_modified_from, last_modified_to, name, priority, process_definition_id, process_instance_id, status, owner, claimed_date) values
7
7
(' 1' , ' assignee' , ' bk1' , CURRENT_TIMESTAMP , ' description' , null , null , null , null , ' task1' , 5 , ' process_definition_id' , 0 , ' COMPLETED' , ' owner' , null ),
@@ -21,4 +21,4 @@ insert into TASK_VARIABLE (create_time, execution_id, last_updated_time, name, p
21
21
(CURRENT_TIMESTAMP , ' execution_id' , CURRENT_TIMESTAMP , ' variable4' , 0 , ' 2' , ' json' , ' {"value":{"key":"data"}}' ),
22
22
(CURRENT_TIMESTAMP , ' execution_id' , CURRENT_TIMESTAMP , ' variable5' , 1 , ' 4' , ' double' , ' {"value":1.2345}' ),
23
23
(CURRENT_TIMESTAMP , ' execution_id' , CURRENT_TIMESTAMP , ' variable6' , 1 , ' 4' , ' int' , ' {"value":12345}' ),
24
- (CURRENT_TIMESTAMP , ' execution_id' , CURRENT_TIMESTAMP , ' variable7' , 1 , ' 4' , ' json' , ' {"value":[1,2,3,4,5]}' );
24
+ (CURRENT_TIMESTAMP , ' execution_id' , CURRENT_TIMESTAMP , ' variable7' , 1 , ' 4' , ' json' , ' {"value":[1,2,3,4,5]}' );
0 commit comments