PopulateRef

Internal structure returned by the PopulateBuilder, which is passed to user code from the populate method on a SelectOperation. Internally this works by setting the include flag on the internal join info structure that either already exists because of previous condition or ordering operations or generates the join info structure on-demand.

Do not create this struct manually, only use the PopulateBuilderField that is passed to you as parameter through the populate function on the SelectOperation struct, which is returned by db.select or tx.select.

struct PopulateRef {}

Members

Variables

idx
size_t idx;

Internal index inside the JoinInfo array that is stored on the SelectBuilder. Do not modify manually, you should only use the populate function on SelectOperation to generate this.

Meta