Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upAudit the expression module for PG specific expressions #153
Comments
sgrif
added this to the 0.5 milestone
Jan 31, 2016
sgrif
added
the
sqlite
label
Feb 3, 2016
sgrif
changed the title from
[SQLite] Audit the expression module for PG specific expressions
to
Audit the expression module for PG specific expressions
Feb 3, 2016
added a commit
that referenced
this issue
Feb 3, 2016
sgrif
referenced this issue
Feb 3, 2016
Merged
Move PG specific expressions out of the global namespace #188
sgrif
closed this
in
#188
Feb 4, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sgrif commentedJan 31, 2016
Right now there's nothing to stop something like
foo.is_distinct_from(bar)from compiling when used against SQLite. We need to audit our codebase for cases where something is PG specific, and make sure it only compiles for PG. We also need to look for cases where the syntax is different on SQLite. For example, SQLite has noNOWfunction, using the string literal'now'instead.