Giter Club home page Giter Club logo

Comments (8)

YAGregor avatar YAGregor commented on May 28, 2024 3

why don't u specialize the ordering? like

 data = await Personx.get(id=id).prefetch_related(Prefetch("msgx", queryset=Msg.all().order_by("id")))

and why do you consider it as a bug of tortoise? have you executed the raw sql that tortiose generated, and checked the ordering that the database direct return?

ref: https://tortoise.github.io/query.html#complex-prefetch

from tortoise-orm.

YAGregor avatar YAGregor commented on May 28, 2024 1

but isnt the data always come in an ascending manner ?

I think that it depends on which database you use.You may set a default ordering of a model, but what is the ordering if you don't change anything? At least it does not guarantee any ordering explicitly.

from tortoise-orm.

xalteropsx avatar xalteropsx commented on May 28, 2024

@long2ice why 161 come earlier many time the relationship itself break to bring correct format // mostly it occur on more then 160 above entry of data

from tortoise-orm.

xalteropsx avatar xalteropsx commented on May 28, 2024

image
here the evidence of ur prefetch_related break if u need further evidence i can create a reproduction of this issue

from tortoise-orm.

xalteropsx avatar xalteropsx commented on May 28, 2024

havent thought about raw retrieveal for this part but i guess i will check it soon bro >,</ but isnt the data always come in an ascending manner ? // thanks ^_^/ i didnt aware we can order prefetch like that

from tortoise-orm.

xalteropsx avatar xalteropsx commented on May 28, 2024

ah i didnt aware but i using the postgresql i think i will use python postgresql plugin to check raw data soon but i think u right

from tortoise-orm.

xalteropsx avatar xalteropsx commented on May 28, 2024

between is it possible to get it on reverse order base on id i tried many time but i dont know what i missing

data = await Personx.get_or_none(id=id).prefetch_related(Prefetch("msgx", queryset=Messagex.all().order_by("-id")))
async for dx in data.msgx:
     print(dx.id)

image

from tortoise-orm.

abondar avatar abondar commented on May 28, 2024

Default return order is not guaranteed in most databases and it is out of scope of tortoise to tweak it
Please use order_by if you rely on ordering

from tortoise-orm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.