Skip to content

Introduce Direction enum for OrderField + Introduce Conjunction enum for WhereGroup #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

pavog
Copy link
Member

@pavog pavog commented Aug 6, 2025

No description provided.

@pavog pavog requested a review from matthi4s August 6, 2025 16:39
const ASCENDING = 0;
const DESCENDING = 1;
const int ASCENDING = 0;
const int DESCENDING = 1;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would be better as an enum. The value doesn't actually mean anything useful.

const AND = 0;
const OR = 1;
const int AND = 0;
const int OR = 1;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this would be better as an enum. The value doesn't actually mean anything useful.

@pavog pavog changed the title Add types to constants Introduce Direction enum for OrderField + Introduce Conjunction enum for WhereGroup Aug 7, 2025
@pavog pavog requested a review from JulianVennen August 7, 2025 13:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants