We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ca1f9 commit fbc47daCopy full SHA for fbc47da
tests/test_aggr_regressions.py
@@ -6,7 +6,7 @@
6
from nose.tools import assert_equal, raises
7
import datajoint as dj
8
from . import PREFIX, CONN_INFO
9
-
+from . import schema_simple
10
schema = dj.Schema(PREFIX + '_aggr_regress', connection=dj.conn(**CONN_INFO))
11
12
# --------------- ISSUE 386 -------------------
@@ -103,3 +103,6 @@ def test_issue558_part2():
103
d = dict(id=3, id2=5)
104
assert_equal(len(X & d), len((X & d).proj(id2='3')))
105
106
+
107
+def test_aggr_with_proj():
108
+ schema_simple.A.aggr(schema_simple.D.proj(m='id_l'), ..., n='max(m) - min(m)')
0 commit comments