aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-10 13:47:25 +0200
committerrtkay123 <dev@kanjala.com>2025-08-10 13:47:25 +0200
commit4e070c8205c7039b8b63260976ffc81b5ac67beb (patch)
treec51a59018e07c7f6f442aab110c6cdfb48da4fed
parentdbff6fa4e5684d8636fd46ecadfe5874a253bd49 (diff)
downloadwarden-4e070c8205c7039b8b63260976ffc81b5ac67beb.tar.bz2
warden-4e070c8205c7039b8b63260976ffc81b5ac67beb.zip
build(sqlx): offline queries
-rw-r--r--.sqlx/query-0569b190a72b273d08b9f6e582eee8725176ded060a0b7254ec8c244d7b64d4e.json26
-rw-r--r--.sqlx/query-89d83588ed7a8183bf5c41b5178019287f3a0bff33c86f2bf6bada3a3185b017.json14
-rw-r--r--.sqlx/query-e2ebd92e926a8efbcc96911a457f5e1e4032e9eedd9f5b2b449d32eb92a39326.json16
-rw-r--r--.sqlx/query-fd5580f8e187b78c352131a3163d9c15f809215b14378e241b151db4cedabe6a.json15
4 files changed, 71 insertions, 0 deletions
diff --git a/.sqlx/query-0569b190a72b273d08b9f6e582eee8725176ded060a0b7254ec8c244d7b64d4e.json b/.sqlx/query-0569b190a72b273d08b9f6e582eee8725176ded060a0b7254ec8c244d7b64d4e.json
new file mode 100644
index 0000000..b09391e
--- /dev/null
+++ b/.sqlx/query-0569b190a72b273d08b9f6e582eee8725176ded060a0b7254ec8c244d7b64d4e.json
@@ -0,0 +1,26 @@
+{
+ "db_name": "PostgreSQL",
+ "query": "\n insert into transaction_relationship (\n source,\n destination,\n amt_unit,\n amt_ccy,\n amt_nanos,\n cre_dt_tm,\n end_to_end_id,\n msg_id,\n pmt_inf_id,\n tx_tp,\n lat,\n lon,\n tx_sts\n )\n values ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)\n ",
+ "describe": {
+ "columns": [],
+ "parameters": {
+ "Left": [
+ "Varchar",
+ "Varchar",
+ "Int8",
+ "Varchar",
+ "Int4",
+ "Timestamptz",
+ "Varchar",
+ "Varchar",
+ "Varchar",
+ "Varchar",
+ "Float8",
+ "Float8",
+ "Varchar"
+ ]
+ },
+ "nullable": []
+ },
+ "hash": "0569b190a72b273d08b9f6e582eee8725176ded060a0b7254ec8c244d7b64d4e"
+}
diff --git a/.sqlx/query-89d83588ed7a8183bf5c41b5178019287f3a0bff33c86f2bf6bada3a3185b017.json b/.sqlx/query-89d83588ed7a8183bf5c41b5178019287f3a0bff33c86f2bf6bada3a3185b017.json
new file mode 100644
index 0000000..041b28c
--- /dev/null
+++ b/.sqlx/query-89d83588ed7a8183bf5c41b5178019287f3a0bff33c86f2bf6bada3a3185b017.json
@@ -0,0 +1,14 @@
+{
+ "db_name": "PostgreSQL",
+ "query": "insert into account (id)\n select * from unnest($1::text[])\n on conflict (id) do nothing",
+ "describe": {
+ "columns": [],
+ "parameters": {
+ "Left": [
+ "TextArray"
+ ]
+ },
+ "nullable": []
+ },
+ "hash": "89d83588ed7a8183bf5c41b5178019287f3a0bff33c86f2bf6bada3a3185b017"
+}
diff --git a/.sqlx/query-e2ebd92e926a8efbcc96911a457f5e1e4032e9eedd9f5b2b449d32eb92a39326.json b/.sqlx/query-e2ebd92e926a8efbcc96911a457f5e1e4032e9eedd9f5b2b449d32eb92a39326.json
new file mode 100644
index 0000000..e2a3f2a
--- /dev/null
+++ b/.sqlx/query-e2ebd92e926a8efbcc96911a457f5e1e4032e9eedd9f5b2b449d32eb92a39326.json
@@ -0,0 +1,16 @@
+{
+ "db_name": "PostgreSQL",
+ "query": "insert into account_holder (source, destination, cre_dt_tm)\n select * from unnest($1::text[], $2::text[], $3::timestamptz[])\n on conflict (source, destination)\n do update set cre_dt_tm = excluded.cre_dt_tm\n ",
+ "describe": {
+ "columns": [],
+ "parameters": {
+ "Left": [
+ "TextArray",
+ "TextArray",
+ "TimestamptzArray"
+ ]
+ },
+ "nullable": []
+ },
+ "hash": "e2ebd92e926a8efbcc96911a457f5e1e4032e9eedd9f5b2b449d32eb92a39326"
+}
diff --git a/.sqlx/query-fd5580f8e187b78c352131a3163d9c15f809215b14378e241b151db4cedabe6a.json b/.sqlx/query-fd5580f8e187b78c352131a3163d9c15f809215b14378e241b151db4cedabe6a.json
new file mode 100644
index 0000000..adaba0e
--- /dev/null
+++ b/.sqlx/query-fd5580f8e187b78c352131a3163d9c15f809215b14378e241b151db4cedabe6a.json
@@ -0,0 +1,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"
+}