blob: adaba0ecf6910c219312c98bfc9e68b8557e4210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
"db_name": "PostgreSQL",
"query": "insert into entity (id, cre_dt_tm)\n select * from unnest($1::text[], $2::timestamptz[])\n on conflict (id)\n do update set cre_dt_tm = excluded.cre_dt_tm\n ",
"describe": {
"columns": [],
"parameters": {
"Left": [
"TextArray",
"TimestamptzArray"
]
},
"nullable": []
},
"hash": "fd5580f8e187b78c352131a3163d9c15f809215b14378e241b151db4cedabe6a"
}
|