Change how pypy is detected. From I0952e54ed9af2952ea340be1945311376ffc1ad2
Fix typos. From Ibb5871a457c0555f82b37e354e7787d15575f1f7
Change-Id: I9657e602267590f10a74df27a84e4292da94c30a
:tags: usecase, sql
:tickets: 5576
- Add support to ``FETCH {FIRST | NEXT} [ count ]
+ Add support to ``FETCH {FIRST | NEXT} [ count ]
{ROW | ROWS} {ONLY | WITH TIES}`` in the select for the supported
backends, currently PostgreSQL, Oracle and MSSQL.
This is a numeric value which usually renders as
``FETCH {FIRST | NEXT} [ count ] {ROW | ROWS} {ONLY | WITH TIES}``
expression in the resulting select. This functionality is
- is currently implemented for Oracle, PostgreSQL, MSSSQL.
+ is currently implemented for Oracle, PostgreSQL, MSSQL.
Use :meth:`_sql.GenerativeSelect.offset` to specify the offset.
py36 = sys.version_info >= (3, 6)
py3k = sys.version_info >= (3, 0)
py2k = sys.version_info < (3, 0)
-pypy = hasattr(sys, "pypy_version_info")
+pypy = platform.python_implementation() == "PyPy"
cpython = platform.python_implementation() == "CPython"