Replies: 1 comment
-
Hi, @devraj! Sorry for the delay, I thought I would get pinged on this on my email but I didn't. There are no docs for those packages, the only reference for now is the code itself. But the # map between APSW operators and the ``Operator`` enum
operator_map = {
apsw.SQLITE_INDEX_CONSTRAINT_EQ: Operator.EQ,
apsw.SQLITE_INDEX_CONSTRAINT_GE: Operator.GE,
apsw.SQLITE_INDEX_CONSTRAINT_GT: Operator.GT,
apsw.SQLITE_INDEX_CONSTRAINT_LE: Operator.LE,
apsw.SQLITE_INDEX_CONSTRAINT_LT: Operator.LT,
} And then:
So that when SQLite finds |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First of all thank you @betodealmeida for all your work on this. We're integrating this in our project for a narrow use case (anomaly/gallagher#31). While the
fields
andfilters
packages are very well documented inline.I was wondering if there are any API references published as part of the documentation on the web? Apologies in advance if I missed something in the current documentation.
Beta Was this translation helpful? Give feedback.
All reactions