2019-04-08 10:22:38 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
|
|
|
|
#Insert Author table data
|
|
|
|
- type: insert
|
|
|
|
args:
|
|
|
|
table: author
|
|
|
|
objects:
|
|
|
|
- name: Author 1
|
2019-12-11 02:20:55 +03:00
|
|
|
info:
|
|
|
|
age: 23
|
|
|
|
location:
|
|
|
|
type: Point
|
|
|
|
coordinates:
|
|
|
|
- -118.4079
|
|
|
|
- 33.9434
|
2019-04-08 10:22:38 +03:00
|
|
|
- name: Author 2
|
|
|
|
|
|
|
|
#Insert Person table data
|
|
|
|
- type: insert
|
|
|
|
args:
|
|
|
|
table: person
|
|
|
|
objects:
|
|
|
|
- details:
|
|
|
|
name:
|
|
|
|
first: foo
|
|
|
|
last: bar
|
|
|
|
address: foobar
|
2020-04-17 12:32:09 +03:00
|
|
|
|
|
|
|
#Insert numerics table data
|
|
|
|
- type: insert
|
|
|
|
args:
|
|
|
|
table: numerics
|
|
|
|
objects:
|
|
|
|
- num_smallint: 12345
|
|
|
|
num_integer: 12345
|
|
|
|
num_bigint: 12345
|
|
|
|
num_real: 12345.67
|
|
|
|
num_double: 12345.67
|
|
|
|
num_money: 12345.67
|
|
|
|
num_numeric: 12345.67
|