Похожие чаты

How to properly use UUID for making quries with SQLAlchemy

to not get error from postgres like "cannot cast type record to uuid"

I have Cards Repository, that has delete method, which uses squence of uuid, if uuid in that sequnce they must be deleted from db.

method:
`def delete(self, cardsids: Sequence[UUID5]) -> Sequence[UUID5]:
stmt = (
delete(Card)
.where(Card.id.in_([cardsids]))
.returning(Card.id)
)

with self.ss.begin():
return self.ss.execute(stmt) # type:ignore`

Then I am trying to delete values:
`Cards.delete(
cardsids=(
UUID("ffbbd142-c9bf-4c66-8b9d-6ebc4806a8cc"),
UUID("5cce0583-f506-4d0b-8fa9-f5604dfddde6"),
)
)`

but unfortunately get error from postgres:
`sqlalchemy.exc.ProgrammingError: (psycopg2.errors.CannotCoerce) cannot cast type record to uuid
LINE 1: ...6ebc4806a8cc', '5cce0583f5064d0b8fa9f5604dfddde6')::UUID) RE...
^

[SQL: DELETE FROM cards WHERE cards.id IN (%(id_1_1)s::UUID) RETURNING cards.id]
[parameters: {'id_1_1': ('ffbbd142c9bf4c668b9d6ebc4806a8cc', '5cce0583f5064d0b8fa9f5604dfddde6')}]`


As you can see SQLAlchemy have made syntax erros for casting simlpe string to uuid.
So instead of:
LINE 1: ...6ebc4806a8cc', '5cce0583f5064d0b8fa9f5604dfddde6')::UUID) RE...
As I think must be::
`LINE 1: ...6ebc4806a8cc':UUID, '5cce0583f5064d0b8fa9f5604dfddde6':UUID)) RE...

Model and his types:
`class Card(BaseModel):
tablename = "cards"

id: Mapped[pkuuid4]
user_id: Mapped[pkuuid4]
origin: Mapped[str64]
interpretation: Mapped[str512]
example: Mapped[str512]
curtt: Mapped[timestamp]
nextt: Mapped[timestamp]
last_rotate: Mapped[numeric]

str64 = Annotated[str, mapped_column(String(64))]
str512 = Annotated[str, mapped_column(String(512))]

pkuuid4 = Annotated[UUID, mapped_column(Uuid(as_uuid=True), primary_key=True)]

numeric = Annotated[
float, mapped_column(Numeric(precision=4, scale=2, asdecimal=False))
]

timestamp = Annotated[datetime, mapped_column(DateTime(timezone=True))]`


**So I assume that i'm passing incorrectly UUID to SQlAlchemy statment in body part of delete method in Cards repository. Perhaps somone knows how correctky use python UUID to make queries?

P.S. I tried to pass uuids as string as it was, instead of pasing them to uuid.UUID() but with just strings i have the same error**

5 ответов

87 просмотров

https://github.com/sqlalchemy/sqlalchemy/discussions/10666

⛧🇮🇱 Shennaz Martinez 🇺🇸🗽
Какой я нахуй слепой даун

Ох, такая мелочь, а сколько часов дебага стоила? Кстати, а почему mypy не ругнулся? Хотя формально он получил Sequence[Any] и на том его полномочия по идее всё

⛧🇮🇱 Shennaz Martinez 🇺🇸🗽
2 часа.

Просто оставил зайвые [], и сижу с мудрым лицом, думаю как же решить эту проблему, "это же не моя, это же проблема в сукулеалхимии, я же не могу быть слепым"

Похожие вопросы

Обсуждают сегодня

Hey everyone! I won’t focus too much on what this person said (it’s clear they don’t understand the scope of what TF and TELOSX are achieving), but I’ll put it simply for thos...
Ana Ojeda
2
как правильно удалить сддм? прописал в etc/portage.use/plasma-meta -sddm , но при обновлении юзов мне предлагает поставить lightdm (ещё лучше 😡), добавил туда - display-manage...
REDis
25
Telos is at a pivotal moment. While ambitious projects like zkEVM and SNARKtor have shown promise, the delay in delivering EVM 2.0—a cornerstone of the ecosystem—is a growing ...
Trinidad
8
Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
#include <stdio.h> #include <stdlib.h> #include <time.h> void mass_first_generate(int mass[5][7]) {     for (int N = 0; N < 5; N++) {         for (int A = 0; A < 7; A++) {   ...
Чувак
6
Всем привет! Решаю 99 OCaml Problems и столкнулся со следующей проблемой (прошу палками не забивать, я OCaml практически не трогал до этого момента): open OUnit2 let create_...
К|/|pи/\/\ 6е3yглbIи
2
Except the wealthiest, people that buy crypto want to "cash out" at the end of the day, one way or another. Converting to fiat is craziness, converting to BTC is unwise. Hold ...
Erdelanax
2
Hello guys, hope you can help me with a quick question. I've staked some ZIL using Atomic Wallet some while ago and wanted to claim my rewards and unstake it. Atomic Wallet sa...
Martin | #bornbrave
14
Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
https://www.linkedin.com/posts/ugama-benedicta-kelechi-codergirl-103041300_mobiledevelopment-fluttertraining-handsonlearning-activity-7263445699227254784-IdHB?utm_source=share...
CoderGirl
16
Карта сайта