From b7a388c3d819daa2e267a84286623f674d5cd04f Mon Sep 17 00:00:00 2001 From: Scott Robertson Date: Sat, 18 Jan 2014 17:36:13 -0800 Subject: [PATCH] defined ast.IndexSeek --- splicer/ast.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/splicer/ast.py b/splicer/ast.py index 7cfafa5..29db81a 100644 --- a/splicer/ast.py +++ b/splicer/ast.py @@ -294,4 +294,11 @@ def new(self, **parts): return self.__class__(relation, *args) - + +# Physical Operations +class IndexSeek(RelationalOp): + __slots__ = ('name','args') + def __init__(self, name, *args): + self.name = name + self.args = args +