Version 0.7 - 2015-05-19
* Fix WINDOW and HAVING params order in Select * Add window functions * Add filter and within group to aggregate * Add limitstyle with 'offset' and 'limit' * Add Lateral
This commit is contained in:
parent
670e9c2c77
commit
0e3b6dbebf
3 changed files with 13 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.6 2015/04/01 02:19:17 rodent Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2015/06/26 16:13:51 rodent Exp $
|
||||
|
||||
DISTNAME= python-sql-0.6
|
||||
DISTNAME= python-sql-0.7
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= https://pypi.python.org/packages/source/p/python-sql/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.2 2015/04/01 02:19:17 rodent Exp $
|
||||
@comment $NetBSD: PLIST,v 1.3 2015/06/26 16:13:51 rodent Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -57,6 +57,9 @@ ${PYSITELIB}/sql/tests/test_insert.pyo
|
|||
${PYSITELIB}/sql/tests/test_join.py
|
||||
${PYSITELIB}/sql/tests/test_join.pyc
|
||||
${PYSITELIB}/sql/tests/test_join.pyo
|
||||
${PYSITELIB}/sql/tests/test_lateral.py
|
||||
${PYSITELIB}/sql/tests/test_lateral.pyc
|
||||
${PYSITELIB}/sql/tests/test_lateral.pyo
|
||||
${PYSITELIB}/sql/tests/test_literal.py
|
||||
${PYSITELIB}/sql/tests/test_literal.pyc
|
||||
${PYSITELIB}/sql/tests/test_literal.pyo
|
||||
|
@ -78,6 +81,9 @@ ${PYSITELIB}/sql/tests/test_update.pyo
|
|||
${PYSITELIB}/sql/tests/test_values.py
|
||||
${PYSITELIB}/sql/tests/test_values.pyc
|
||||
${PYSITELIB}/sql/tests/test_values.pyo
|
||||
${PYSITELIB}/sql/tests/test_window.py
|
||||
${PYSITELIB}/sql/tests/test_window.pyc
|
||||
${PYSITELIB}/sql/tests/test_window.pyo
|
||||
${PYSITELIB}/sql/tests/test_with.py
|
||||
${PYSITELIB}/sql/tests/test_with.pyc
|
||||
${PYSITELIB}/sql/tests/test_with.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.4 2015/04/01 02:19:17 rodent Exp $
|
||||
$NetBSD: distinfo,v 1.5 2015/06/26 16:13:51 rodent Exp $
|
||||
|
||||
SHA1 (python-sql-0.6.tar.gz) = af0a044589ea1b8c33b28c07ced79dd1b6eca44d
|
||||
RMD160 (python-sql-0.6.tar.gz) = eed865ed7c071755d3609aca9989b621da2b3048
|
||||
Size (python-sql-0.6.tar.gz) = 24757 bytes
|
||||
SHA1 (python-sql-0.7.tar.gz) = db674f55c21ecdb8afc08aec68fe9306abdeaa76
|
||||
RMD160 (python-sql-0.7.tar.gz) = 153ba48aa64efbe16d02d2a905e3c3fda012b54d
|
||||
Size (python-sql-0.7.tar.gz) = 27422 bytes
|
||||
|
|
Loading…
Reference in a new issue