From c3334d41f9b24974471e0a01bc8a693474f339d1 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 21 Nov 2024 07:38:34 -0800 Subject: [PATCH] chore: update sqlx prepare --- ...09b2da222b2a03ebac829fac72e38a3f4fcb9.json | 12 +++++++++++ ...85e093e92494c3e4179a6e42e629b9687dbb7.json | 20 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .sqlx/query-206573166eaf1d57c70f9ed148a09b2da222b2a03ebac829fac72e38a3f4fcb9.json create mode 100644 .sqlx/query-c5b7e87773cf935a3bb914c2b8685e093e92494c3e4179a6e42e629b9687dbb7.json diff --git a/.sqlx/query-206573166eaf1d57c70f9ed148a09b2da222b2a03ebac829fac72e38a3f4fcb9.json b/.sqlx/query-206573166eaf1d57c70f9ed148a09b2da222b2a03ebac829fac72e38a3f4fcb9.json new file mode 100644 index 0000000..f6b132f --- /dev/null +++ b/.sqlx/query-206573166eaf1d57c70f9ed148a09b2da222b2a03ebac829fac72e38a3f4fcb9.json @@ -0,0 +1,12 @@ +{ + "db_name": "SQLite", + "query": "DELETE FROM records\nWHERE cache_name = ?;\n", + "describe": { + "columns": [], + "parameters": { + "Right": 1 + }, + "nullable": [] + }, + "hash": "206573166eaf1d57c70f9ed148a09b2da222b2a03ebac829fac72e38a3f4fcb9" +} diff --git a/.sqlx/query-c5b7e87773cf935a3bb914c2b8685e093e92494c3e4179a6e42e629b9687dbb7.json b/.sqlx/query-c5b7e87773cf935a3bb914c2b8685e093e92494c3e4179a6e42e629b9687dbb7.json new file mode 100644 index 0000000..a424d4a --- /dev/null +++ b/.sqlx/query-c5b7e87773cf935a3bb914c2b8685e093e92494c3e4179a6e42e629b9687dbb7.json @@ -0,0 +1,20 @@ +{ + "db_name": "SQLite", + "query": "-- The funny alias used here is to allow sqlx to do type inference on columns\n-- See: https://docs.rs/sqlx/latest/sqlx/macro.query_as.html#column-type-override-infer-from-struct-field\nSELECT cache_name AS \"cache_name: _\"\nFROM records;\n", + "describe": { + "columns": [ + { + "name": "cache_name: _", + "ordinal": 0, + "type_info": "Text" + } + ], + "parameters": { + "Right": 0 + }, + "nullable": [ + false + ] + }, + "hash": "c5b7e87773cf935a3bb914c2b8685e093e92494c3e4179a6e42e629b9687dbb7" +}