Skip to content

Commit 6ee5e33

Browse files
committed
rebuild and retest
1 parent bd20b53 commit 6ee5e33

File tree

8 files changed

+3129
-3016
lines changed

8 files changed

+3129
-3016
lines changed

build/lib/data_algebra/data_model.py

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -130,39 +130,6 @@ def rowrecs_to_blocks(
130130
:param blocks_out: cdata record specification.
131131
:return: transformed data frame
132132
"""
133-
134-
# expression helpers
135-
136-
@abc.abstractmethod
137-
def act_on_literal(self, *, value):
138-
"""
139-
Action for a literal/constant in an expression.
140-
141-
:param value: literal value being supplied
142-
:return: converted result
143-
"""
144-
145-
@abc.abstractmethod
146-
def act_on_column_name(self, *, arg, value):
147-
"""
148-
Action for a column name.
149-
150-
:param arg: item we are acting on
151-
:param value: column name
152-
:return: converted result
153-
"""
154-
155-
@abc.abstractmethod
156-
def act_on_expression(self, *, arg, values: List, op: str):
157-
"""
158-
Action for a column name.
159-
160-
:param arg: item we are acting on
161-
:param values: op arguments already converted
162-
:param op: operator to apply
163-
:return: converted result
164-
"""
165-
166133

167134
# map type name strings to data models
168135
data_model_type_map = dict()

0 commit comments

Comments
 (0)