from ..sql.base import InPlaceGenerative
from ..util import collections_abc
+if util.TYPE_CHECKING:
+ from typing import Any
+ from typing import List
+ from typing import Optional
+ from typing import Int
+ from typing import Iterator
+ from typing import Mapping
+
+
if _baserow_usecext:
from sqlalchemy.cresultproxy import tuplegetter
_NO_ROW = util.symbol("NO_ROW")
-class Result(InPlaceGenerative):
- """Represent a set of database results.
+class ResultInternal(InPlaceGenerative):
+ _real_result = None
+ _generate_rows = True
+ _unique_filter_state = None
+ _post_creational_filter = None
- .. versionadded:: 1.4 The :class:`.Result` object provides a completely
- updated usage model and calling facade for SQLAlchemy Core and
- SQLAlchemy ORM. In Core, it forms the basis of the
- :class:`.CursorResult` object which replaces the previous
- :class:`.ResultProxy` interface. When using the ORM, a higher level
- object called :class:`.ChunkedIteratorResult` is normally used.
+ @HasMemoized.memoized_attribute
+ def _row_getter(self):
+ real_result = self._real_result if self._real_result else self
- """
+ if real_result._source_supports_scalars:
+ if not self._generate_rows:
+ return None
+ else:
+ _proc = real_result._process_row
- _process_row = Row
+ def process_row(
+ metadata, processors, keymap, key_style, scalar_obj
+ ):
+ return _proc(
+ metadata, processors, keymap, key_style, (scalar_obj,)
+ )
- _row_logging_fn = None
+ else:
+ process_row = real_result._process_row
- _source_supports_scalars = False
- _generate_rows = True
- _column_slice_filter = None
- _post_creational_filter = None
- _unique_filter_state = None
- _no_scalar_onerow = False
- _yield_per = None
+ key_style = real_result._process_row._default_key_style
+ metadata = self._metadata
- _attributes = util.immutabledict()
+ keymap = metadata._keymap
+ processors = metadata._processors
+ tf = metadata._tuplefilter
- def __init__(self, cursor_metadata):
- self._metadata = cursor_metadata
+ if tf and not real_result._source_supports_scalars:
+ if processors:
+ processors = tf(processors)
- def _soft_close(self, hard=False):
- raise NotImplementedError()
+ _make_row_orig = functools.partial(
+ process_row, metadata, processors, keymap, key_style
+ )
- def keys(self):
- """Return an iterable view which yields the string keys that would
- be represented by each :class:`.Row`.
+ def make_row(row):
+ return _make_row_orig(tf(row))
- The view also can be tested for key containment using the Python
- ``in`` operator, which will test both for the string keys represented
- in the view, as well as for alternate keys such as column objects.
+ else:
+ make_row = functools.partial(
+ process_row, metadata, processors, keymap, key_style
+ )
- .. versionchanged:: 1.4 a key view object is returned rather than a
- plain list.
+ fns = ()
+ if real_result._row_logging_fn:
+ fns = (real_result._row_logging_fn,)
+ else:
+ fns = ()
- """
- return self._metadata.keys
+ if fns:
+ _make_row = make_row
- @_generative
- def yield_per(self, num):
- """Configure the row-fetching strategy to fetch num rows at a time.
+ def make_row(row):
+ row = _make_row(row)
+ for fn in fns:
+ row = fn(row)
+ return row
- This impacts the underlying behavior of the result when iterating over
- the result object, or otherwise making use of methods such as
- :meth:`_engine.Result.fetchone` that return one row at a time. Data
- from the underlying cursor or other data source will be buffered up to
- this many rows in memory, and the buffered collection will then be
- yielded out one row at at time or as many rows are requested. Each time
- the buffer clears, it will be refreshed to this many rows or as many
- rows remain if fewer remain.
+ return make_row
- The :meth:`_engine.Result.yield_per` method is generally used in
- conjunction with the
- :paramref:`_engine.Connection.execution_options.stream_results`
- execution option, which will allow the database dialect in use to make
- use of a server side cursor, if the DBAPI supports it.
+ @HasMemoized.memoized_attribute
+ def _iterator_getter(self):
- Most DBAPIs do not use server side cursors by default, which means all
- rows will be fetched upfront from the database regardless of the
- :meth:`_engine.Result.yield_per` setting. However,
- :meth:`_engine.Result.yield_per` may still be useful in that it batches
- the SQLAlchemy-side processing of the raw data from the database, and
- additionally when used for ORM scenarios will batch the conversion of
- database rows into ORM entity rows.
+ make_row = self._row_getter
+ post_creational_filter = self._post_creational_filter
- .. versionadded:: 1.4
+ if self._unique_filter_state:
+ uniques, strategy = self._unique_strategy
- :param num: number of rows to fetch each time the buffer is refilled.
- If set to a value below 1, fetches all rows for the next buffer.
+ def iterrows(self):
+ for row in self._fetchiter_impl():
+ obj = make_row(row) if make_row else row
+ hashed = strategy(obj) if strategy else obj
+ if hashed in uniques:
+ continue
+ uniques.add(hashed)
+ if post_creational_filter:
+ obj = post_creational_filter(obj)
+ yield obj
- """
- self._yield_per = num
+ else:
- @_generative
- def unique(self, strategy=None):
- """Apply unique filtering to the objects returned by this
- :class:`_engine.Result`.
+ def iterrows(self):
+ for row in self._fetchiter_impl():
+ row = make_row(row) if make_row else row
+ if post_creational_filter:
+ row = post_creational_filter(row)
+ yield row
- When this filter is applied with no arguments, the rows or objects
- returned will filtered such that each row is returned uniquely. The
- algorithm used to determine this uniqueness is by default the Python
- hashing identity of the whole tuple. In some cases a specialized
- per-entity hashing scheme may be used, such as when using the ORM, a
- scheme is applied which works against the primary key identity of
- returned objects.
+ return iterrows
- The unique filter is applied **after all other filters**, which means
- if the columns returned have been refined using a method such as the
- :meth:`_engine.Result.columns` or :meth:`_engine.Result.scalars`
- method, the uniquing is applied to **only the column or columns
- returned**. This occurs regardless of the order in which these
- methods have been called upon the :class:`_engine.Result` object.
+ def _raw_all_rows(self):
+ make_row = self._row_getter
+ rows = self._fetchall_impl()
+ return [make_row(row) for row in rows]
- The unique filter also changes the calculus used for methods like
- :meth:`_engine.Result.fetchmany` and :meth:`_engine.Result.partitions`.
- When using :meth:`_engine.Result.unique`, these methods will continue
- to yield the number of rows or objects requested, after uniquing
- has been applied. However, this necessarily impacts the buffering
- behavior of the underlying cursor or datasource, such that multiple
- underlying calls to ``cursor.fetchmany()`` may be necessary in order
- to accumulate enough objects in order to provide a unique collection
- of the requested size.
+ def _allrows(self):
- :param strategy: a callable that will be applied to rows or objects
- being iterated, which should return an object that represents the
- unique value of the row. A Python ``set()`` is used to store
- these identities. If not passed, a default uniqueness strategy
- is used which may have been assembled by the source of this
- :class:`_engine.Result` object.
+ post_creational_filter = self._post_creational_filter
- """
- self._unique_filter_state = (set(), strategy)
+ make_row = self._row_getter
- @HasMemoized.memoized_attribute
- def _unique_strategy(self):
- uniques, strategy = self._unique_filter_state
+ rows = self._fetchall_impl()
+ if make_row:
+ made_rows = [make_row(row) for row in rows]
+ else:
+ made_rows = rows
- if not strategy and self._metadata._unique_filters:
- if self._source_supports_scalars:
- strategy = self._metadata._unique_filters[0]
- else:
- filters = self._metadata._unique_filters
- if self._metadata._tuplefilter:
- filters = self._metadata._tuplefilter(filters)
+ if self._unique_filter_state:
+ uniques, strategy = self._unique_strategy
- strategy = operator.methodcaller("_filter_on_values", filters)
- return uniques, strategy
+ rows = [
+ made_row
+ for made_row, sig_row in [
+ (made_row, strategy(made_row) if strategy else made_row,)
+ for made_row in made_rows
+ ]
+ if sig_row not in uniques and not uniques.add(sig_row)
+ ]
+ else:
+ rows = made_rows
- def columns(self, *col_expressions):
- r"""Establish the columns that should be returned in each row.
+ if post_creational_filter:
+ rows = [post_creational_filter(row) for row in rows]
+ return rows
- This method may be used to limit the columns returned as well
- as to reorder them. The given list of expressions are normally
- a series of integers or string key names. They may also be
- appropriate :class:`.ColumnElement` objects which correspond to
- a given statement construct.
+ @HasMemoized.memoized_attribute
+ def _onerow_getter(self):
+ make_row = self._row_getter
- E.g.::
+ post_creational_filter = self._post_creational_filter
- statement = select(table.c.x, table.c.y, table.c.z)
- result = connection.execute(statement)
+ if self._unique_filter_state:
+ uniques, strategy = self._unique_strategy
- for z, y in result.columns('z', 'y'):
- # ...
+ def onerow(self):
+ _onerow = self._fetchone_impl
+ while True:
+ row = _onerow()
+ if row is None:
+ return _NO_ROW
+ else:
+ obj = make_row(row) if make_row else row
+ hashed = strategy(obj) if strategy else obj
+ if hashed in uniques:
+ continue
+ else:
+ uniques.add(hashed)
+ if post_creational_filter:
+ obj = post_creational_filter(obj)
+ return obj
+ else:
- Example of using the column objects from the statement itself::
+ def onerow(self):
+ row = self._fetchone_impl()
+ if row is None:
+ return _NO_ROW
+ else:
+ row = make_row(row) if make_row else row
+ if post_creational_filter:
+ row = post_creational_filter(row)
+ return row
- for z, y in result.columns(
- statement.selected_columns.c.z,
- statement.selected_columns.c.y
- ):
- # ...
+ return onerow
- .. versionadded:: 1.4
+ @HasMemoized.memoized_attribute
+ def _manyrow_getter(self):
+ make_row = self._row_getter
- :param \*col_expressions: indicates columns to be returned. Elements
- may be integer row indexes, string column names, or appropriate
- :class:`.ColumnElement` objects corresponding to a select construct.
+ post_creational_filter = self._post_creational_filter
- :return: this :class:`_engine.Result` object with the modifications
- given.
+ if self._unique_filter_state:
+ uniques, strategy = self._unique_strategy
- """
- return self._column_slices(col_expressions)
+ def filterrows(make_row, rows, strategy, uniques):
+ if make_row:
+ rows = [make_row(row) for row in rows]
- def partitions(self, size=None):
- """Iterate through sub-lists of rows of the size given.
+ if strategy:
+ made_rows = (
+ (made_row, strategy(made_row)) for made_row in rows
+ )
+ else:
+ made_rows = ((made_row, made_row) for made_row in rows)
+ return [
+ made_row
+ for made_row, sig_row in made_rows
+ if sig_row not in uniques and not uniques.add(sig_row)
+ ]
- Each list will be of the size given, excluding the last list to
- be yielded, which may have a small number of rows. No empty
- lists will be yielded.
+ def manyrows(self, num):
+ collect = []
- The result object is automatically closed when the iterator
- is fully consumed.
+ _manyrows = self._fetchmany_impl
- Note that the backend driver will usually buffer the entire result
- ahead of time unless the
- :paramref:`.Connection.execution_options.stream_results` execution
- option is used indicating that the driver should not pre-buffer
- results, if possible. Not all drivers support this option and
- the option is silently ignored for those who do.
+ if num is None:
+ # if None is passed, we don't know the default
+ # manyrows number, DBAPI has this as cursor.arraysize
+ # different DBAPIs / fetch strategies may be different.
+ # do a fetch to find what the number is. if there are
+ # only fewer rows left, then it doesn't matter.
+ real_result = (
+ self._real_result if self._real_result else self
+ )
+ if real_result._yield_per:
+ num_required = num = real_result._yield_per
+ else:
+ rows = _manyrows(num)
+ num = len(rows)
+ collect.extend(
+ filterrows(make_row, rows, strategy, uniques)
+ )
+ num_required = num - len(collect)
+ else:
+ num_required = num
- .. versionadded:: 1.4
+ while num_required:
+ rows = _manyrows(num_required)
+ if not rows:
+ break
- :param size: indicate the maximum number of rows to be present
- in each list yielded. If None, makes use of the value set by
- :meth:`_engine.Result.yield_per`, if present, otherwise uses the
- :meth:`_engine.Result.fetchmany` default which may be backend
- specific.
+ collect.extend(
+ filterrows(make_row, rows, strategy, uniques)
+ )
+ num_required = num - len(collect)
- :return: iterator of lists
+ if post_creational_filter:
+ collect = [post_creational_filter(row) for row in collect]
+ return collect
- """
- getter = self._manyrow_getter
+ else:
- while True:
- partition = getter(self, size)
- if partition:
- yield partition
- else:
- break
+ def manyrows(self, num):
+ if num is None:
+ real_result = (
+ self._real_result if self._real_result else self
+ )
+ num = real_result._yield_per
- def scalars(self, index=0):
- """Apply a scalars filter to returned rows.
+ rows = self._fetchmany_impl(num)
+ if make_row:
+ rows = [make_row(row) for row in rows]
+ if post_creational_filter:
+ rows = [post_creational_filter(row) for row in rows]
+ return rows
- When this filter is applied, fetching results will return Python scalar
- objects from exactly one column of each row, rather than :class:`.Row`
- objects or mappings.
+ return manyrows
- This filter cancels out other filters that may be established such
- as that of :meth:`_engine.Result.mappings`.
+ def _only_one_row(
+ self, raise_for_second_row, raise_for_none, scalar,
+ ):
+ onerow = self._fetchone_impl
- .. versionadded:: 1.4
+ row = onerow(hard_close=True)
+ if row is None:
+ if raise_for_none:
+ raise exc.NoResultFound(
+ "No row was found when one was required"
+ )
+ else:
+ return None
- :param index: integer or row key indicating the column to be fetched
- from each row, defaults to ``0`` indicating the first column.
+ if scalar and self._source_supports_scalars:
+ make_row = None
+ else:
+ make_row = self._row_getter
- :return: this :class:`_engine.Result` object with modifications.
+ row = make_row(row) if make_row else row
- """
- result = self._column_slices([index])
- if self._generate_rows:
- result._post_creational_filter = operator.itemgetter(0)
- result._no_scalar_onerow = True
- return result
+ if raise_for_second_row:
+ if self._unique_filter_state:
+ # for no second row but uniqueness, need to essentially
+ # consume the entire result :(
+ uniques, strategy = self._unique_strategy
- @_generative
- def _column_slices(self, indexes):
- if self._source_supports_scalars and len(indexes) == 1:
- self._generate_rows = False
- else:
- self._generate_rows = True
- self._metadata = self._metadata._reduce(indexes)
+ existing_row_hash = strategy(row) if strategy else row
- def _getter(self, key, raiseerr=True):
- """return a callable that will retrieve the given key from a
- :class:`.Row`.
+ while True:
+ next_row = onerow(hard_close=True)
+ if next_row is None:
+ next_row = _NO_ROW
+ break
- """
- if self._source_supports_scalars:
- raise NotImplementedError(
- "can't use this function in 'only scalars' mode"
- )
- return self._metadata._getter(key, raiseerr)
+ next_row = make_row(next_row) if make_row else next_row
- def _tuple_getter(self, keys):
- """return a callable that will retrieve the given keys from a
- :class:`.Row`.
+ if strategy:
+ if existing_row_hash == strategy(next_row):
+ continue
+ elif row == next_row:
+ continue
+ # here, we have a row and it's different
+ break
+ else:
+ next_row = onerow(hard_close=True)
+ if next_row is None:
+ next_row = _NO_ROW
- """
- if self._source_supports_scalars:
- raise NotImplementedError(
- "can't use this function in 'only scalars' mode"
- )
- return self._metadata._row_as_tuple_getter(keys)
+ if next_row is not _NO_ROW:
+ self._soft_close(hard=True)
+ raise exc.MultipleResultsFound(
+ "Multiple rows were found when exactly one was required"
+ if raise_for_none
+ else "Multiple rows were found when one or none "
+ "was required"
+ )
+ else:
+ next_row = _NO_ROW
- @_generative
- def mappings(self):
- """Apply a mappings filter to returned rows.
+ if not raise_for_second_row:
+ # if we checked for second row then that would have
+ # closed us :)
+ self._soft_close(hard=True)
- When this filter is applied, fetching rows will return
- :class:`.RowMapping` objects instead of :class:`.Row` objects.
+ if not scalar:
+ post_creational_filter = self._post_creational_filter
+ if post_creational_filter:
+ row = post_creational_filter(row)
- This filter cancels out other filters that may be established such
- as that of :meth:`_engine.Result.scalars`.
+ if scalar and make_row:
+ return row[0]
+ else:
+ return row
- .. versionadded:: 1.4
+ @_generative
+ def _column_slices(self, indexes):
+ real_result = self._real_result if self._real_result else self
- :return: this :class:`._engine.Result` object with modifications.
- """
+ if real_result._source_supports_scalars and len(indexes) == 1:
+ self._generate_rows = False
+ else:
+ self._generate_rows = True
+ self._metadata = self._metadata._reduce(indexes)
- if self._source_supports_scalars:
- self._metadata = self._metadata._reduce([0])
+ @HasMemoized.memoized_attribute
+ def _unique_strategy(self):
+ uniques, strategy = self._unique_filter_state
- self._post_creational_filter = operator.attrgetter("_mapping")
- self._no_scalar_onerow = False
- self._generate_rows = True
+ real_result = (
+ self._real_result if self._real_result is not None else self
+ )
- @HasMemoized.memoized_attribute
- def _row_getter(self):
- if self._source_supports_scalars:
- if not self._generate_rows:
- return None
+ if not strategy and self._metadata._unique_filters:
+ if real_result._source_supports_scalars:
+ strategy = self._metadata._unique_filters[0]
else:
- _proc = self._process_row
+ filters = self._metadata._unique_filters
+ if self._metadata._tuplefilter:
+ filters = self._metadata._tuplefilter(filters)
- def process_row(
- metadata, processors, keymap, key_style, scalar_obj
- ):
- return _proc(
- metadata, processors, keymap, key_style, (scalar_obj,)
- )
+ strategy = operator.methodcaller("_filter_on_values", filters)
+ return uniques, strategy
- else:
- process_row = self._process_row
- key_style = self._process_row._default_key_style
- metadata = self._metadata
+class Result(ResultInternal):
+ """Represent a set of database results.
- keymap = metadata._keymap
- processors = metadata._processors
- tf = metadata._tuplefilter
+ .. versionadded:: 1.4 The :class:`.Result` object provides a completely
+ updated usage model and calling facade for SQLAlchemy Core and
+ SQLAlchemy ORM. In Core, it forms the basis of the
+ :class:`.CursorResult` object which replaces the previous
+ :class:`.ResultProxy` interface. When using the ORM, a higher level
+ object called :class:`.ChunkedIteratorResult` is normally used.
- if tf and not self._source_supports_scalars:
- if processors:
- processors = tf(processors)
+ """
- _make_row_orig = functools.partial(
- process_row, metadata, processors, keymap, key_style
- )
+ _process_row = Row
- def make_row(row):
- return _make_row_orig(tf(row))
+ _row_logging_fn = None
- else:
- make_row = functools.partial(
- process_row, metadata, processors, keymap, key_style
- )
+ _source_supports_scalars = False
- fns = ()
+ _yield_per = None
- if self._row_logging_fn:
- fns = (self._row_logging_fn,)
- else:
- fns = ()
+ _attributes = util.immutabledict()
- if self._column_slice_filter:
- fns += (self._column_slice_filter,)
+ def __init__(self, cursor_metadata):
+ self._metadata = cursor_metadata
- if fns:
- _make_row = make_row
+ def _soft_close(self, hard=False):
+ raise NotImplementedError()
- def make_row(row):
- row = _make_row(row)
- for fn in fns:
- row = fn(row)
- return row
+ def keys(self):
+ """Return an iterable view which yields the string keys that would
+ be represented by each :class:`.Row`.
- return make_row
+ The view also can be tested for key containment using the Python
+ ``in`` operator, which will test both for the string keys represented
+ in the view, as well as for alternate keys such as column objects.
- def _raw_row_iterator(self):
- """Return a safe iterator that yields raw row data.
+ .. versionchanged:: 1.4 a key view object is returned rather than a
+ plain list.
- This is used by the :meth:`._engine.Result.merge` method
- to merge multiple compatible results together.
"""
- raise NotImplementedError()
-
- def freeze(self):
- """Return a callable object that will produce copies of this
- :class:`.Result` when invoked.
-
- The callable object returned is an instance of
- :class:`_engine.FrozenResult`.
+ return self._metadata.keys
- This is used for result set caching. The method must be called
- on the result when it has been unconsumed, and calling the method
- will consume the result fully. When the :class:`_engine.FrozenResult`
- is retrieved from a cache, it can be called any number of times where
- it will produce a new :class:`_engine.Result` object each time
- against its stored set of rows.
+ @_generative
+ def yield_per(self, num):
+ """Configure the row-fetching strategy to fetch num rows at a time.
- .. seealso::
+ This impacts the underlying behavior of the result when iterating over
+ the result object, or otherwise making use of methods such as
+ :meth:`_engine.Result.fetchone` that return one row at a time. Data
+ from the underlying cursor or other data source will be buffered up to
+ this many rows in memory, and the buffered collection will then be
+ yielded out one row at at time or as many rows are requested. Each time
+ the buffer clears, it will be refreshed to this many rows or as many
+ rows remain if fewer remain.
- :ref:`do_orm_execute_re_executing` - example usage within the
- ORM to implement a result-set cache.
+ The :meth:`_engine.Result.yield_per` method is generally used in
+ conjunction with the
+ :paramref:`_engine.Connection.execution_options.stream_results`
+ execution option, which will allow the database dialect in use to make
+ use of a server side cursor, if the DBAPI supports it.
- """
- return FrozenResult(self)
+ Most DBAPIs do not use server side cursors by default, which means all
+ rows will be fetched upfront from the database regardless of the
+ :meth:`_engine.Result.yield_per` setting. However,
+ :meth:`_engine.Result.yield_per` may still be useful in that it batches
+ the SQLAlchemy-side processing of the raw data from the database, and
+ additionally when used for ORM scenarios will batch the conversion of
+ database rows into ORM entity rows.
- def merge(self, *others):
- """Merge this :class:`.Result` with other compatible result
- objects.
- The object returned is an instance of :class:`_engine.MergedResult`,
- which will be composed of iterators from the given result
- objects.
+ .. versionadded:: 1.4
- The new result will use the metadata from this result object.
- The subsequent result objects must be against an identical
- set of result / cursor metadata, otherwise the behavior is
- undefined.
+ :param num: number of rows to fetch each time the buffer is refilled.
+ If set to a value below 1, fetches all rows for the next buffer.
"""
- return MergedResult(self._metadata, (self,) + others)
+ self._yield_per = num
- @HasMemoized.memoized_attribute
- def _iterator_getter(self):
+ @_generative
+ def unique(self, strategy=None):
+ # type(Optional[object]) -> Result
+ """Apply unique filtering to the objects returned by this
+ :class:`_engine.Result`.
- make_row = self._row_getter
+ When this filter is applied with no arguments, the rows or objects
+ returned will filtered such that each row is returned uniquely. The
+ algorithm used to determine this uniqueness is by default the Python
+ hashing identity of the whole tuple. In some cases a specialized
+ per-entity hashing scheme may be used, such as when using the ORM, a
+ scheme is applied which works against the primary key identity of
+ returned objects.
- post_creational_filter = self._post_creational_filter
+ The unique filter is applied **after all other filters**, which means
+ if the columns returned have been refined using a method such as the
+ :meth:`_engine.Result.columns` or :meth:`_engine.Result.scalars`
+ method, the uniquing is applied to **only the column or columns
+ returned**. This occurs regardless of the order in which these
+ methods have been called upon the :class:`_engine.Result` object.
- if self._unique_filter_state:
- uniques, strategy = self._unique_strategy
+ The unique filter also changes the calculus used for methods like
+ :meth:`_engine.Result.fetchmany` and :meth:`_engine.Result.partitions`.
+ When using :meth:`_engine.Result.unique`, these methods will continue
+ to yield the number of rows or objects requested, after uniquing
+ has been applied. However, this necessarily impacts the buffering
+ behavior of the underlying cursor or datasource, such that multiple
+ underlying calls to ``cursor.fetchmany()`` may be necessary in order
+ to accumulate enough objects in order to provide a unique collection
+ of the requested size.
- def iterrows(self):
- for row in self._fetchiter_impl():
- obj = make_row(row) if make_row else row
- hashed = strategy(obj) if strategy else obj
- if hashed in uniques:
- continue
- uniques.add(hashed)
- if post_creational_filter:
- obj = post_creational_filter(obj)
- yield obj
+ :param strategy: a callable that will be applied to rows or objects
+ being iterated, which should return an object that represents the
+ unique value of the row. A Python ``set()`` is used to store
+ these identities. If not passed, a default uniqueness strategy
+ is used which may have been assembled by the source of this
+ :class:`_engine.Result` object.
- else:
+ """
+ self._unique_filter_state = (set(), strategy)
- def iterrows(self):
- for row in self._fetchiter_impl():
- row = make_row(row) if make_row else row
- if post_creational_filter:
- row = post_creational_filter(row)
- yield row
+ def columns(self, *col_expressions):
+ # type: (*object) -> Result
+ r"""Establish the columns that should be returned in each row.
- return iterrows
+ This method may be used to limit the columns returned as well
+ as to reorder them. The given list of expressions are normally
+ a series of integers or string key names. They may also be
+ appropriate :class:`.ColumnElement` objects which correspond to
+ a given statement construct.
- def _raw_all_rows(self):
- make_row = self._row_getter
- rows = self._fetchall_impl()
- return [make_row(row) for row in rows]
+ E.g.::
- def _allrows(self):
+ statement = select(table.c.x, table.c.y, table.c.z)
+ result = connection.execute(statement)
- make_row = self._row_getter
+ for z, y in result.columns('z', 'y'):
+ # ...
- rows = self._fetchall_impl()
- if make_row:
- made_rows = [make_row(row) for row in rows]
- else:
- made_rows = rows
- post_creational_filter = self._post_creational_filter
+ Example of using the column objects from the statement itself::
+
+ for z, y in result.columns(
+ statement.selected_columns.c.z,
+ statement.selected_columns.c.y
+ ):
+ # ...
- if self._unique_filter_state:
- uniques, strategy = self._unique_strategy
+ .. versionadded:: 1.4
- rows = [
- made_row
- for made_row, sig_row in [
- (made_row, strategy(made_row) if strategy else made_row,)
- for made_row in made_rows
- ]
- if sig_row not in uniques and not uniques.add(sig_row)
- ]
- else:
- rows = made_rows
+ :param \*col_expressions: indicates columns to be returned. Elements
+ may be integer row indexes, string column names, or appropriate
+ :class:`.ColumnElement` objects corresponding to a select construct.
- if post_creational_filter:
- rows = [post_creational_filter(row) for row in rows]
- return rows
+ :return: this :class:`_engine.Result` object with the modifications
+ given.
- @HasMemoized.memoized_attribute
- def _onerow_getter(self):
- make_row = self._row_getter
+ """
+ return self._column_slices(col_expressions)
- post_creational_filter = self._post_creational_filter
+ def scalars(self, index=0):
+ # type: (Int) -> ScalarResult
+ """Return a :class:`_result.ScalarResult` filtering object which
+ will return single elements rather than :class:`_row.Row` objects.
- if self._unique_filter_state:
- uniques, strategy = self._unique_strategy
+ E.g.::
- def onerow(self):
- _onerow = self._fetchone_impl
- while True:
- row = _onerow()
- if row is None:
- return _NO_ROW
- else:
- obj = make_row(row) if make_row else row
- hashed = strategy(obj) if strategy else obj
- if hashed in uniques:
- continue
- else:
- uniques.add(hashed)
- if post_creational_filter:
- obj = post_creational_filter(obj)
- return obj
+ >>> result = conn.execute(text("select int_id from table"))
+ >>> result.scalars().all()
+ [1, 2, 3]
- else:
+ When results are fetched from the :class:`_result.ScalarResult`
+ filtering object, the single column-row that would be returned by the
+ :class:`_result.Result` is instead returned as the column's value.
- def onerow(self):
- row = self._fetchone_impl()
- if row is None:
- return _NO_ROW
- else:
- row = make_row(row) if make_row else row
- if post_creational_filter:
- row = post_creational_filter(row)
- return row
+ .. versionadded:: 1.4
- return onerow
+ :param index: integer or row key indicating the column to be fetched
+ from each row, defaults to ``0`` indicating the first column.
- @HasMemoized.memoized_attribute
- def _manyrow_getter(self):
- make_row = self._row_getter
+ :return: a new :class:`_result.ScalarResult` filtering object referring
+ to this :class:`_result.Result` object.
- post_creational_filter = self._post_creational_filter
+ """
+ return ScalarResult(self, index)
- if self._unique_filter_state:
- uniques, strategy = self._unique_strategy
+ def _getter(self, key, raiseerr=True):
+ """return a callable that will retrieve the given key from a
+ :class:`.Row`.
- def filterrows(make_row, rows, strategy, uniques):
- if make_row:
- rows = [make_row(row) for row in rows]
+ """
+ if self._source_supports_scalars:
+ raise NotImplementedError(
+ "can't use this function in 'only scalars' mode"
+ )
+ return self._metadata._getter(key, raiseerr)
- if strategy:
- made_rows = (
- (made_row, strategy(made_row)) for made_row in rows
- )
- else:
- made_rows = ((made_row, made_row) for made_row in rows)
- return [
- made_row
- for made_row, sig_row in made_rows
- if sig_row not in uniques and not uniques.add(sig_row)
- ]
+ def _tuple_getter(self, keys):
+ """return a callable that will retrieve the given keys from a
+ :class:`.Row`.
- def manyrows(self, num):
- collect = []
+ """
+ if self._source_supports_scalars:
+ raise NotImplementedError(
+ "can't use this function in 'only scalars' mode"
+ )
+ return self._metadata._row_as_tuple_getter(keys)
- _manyrows = self._fetchmany_impl
+ def mappings(self):
+ # type() -> MappingResult
+ """Apply a mappings filter to returned rows, returning an instance of
+ :class:`_result.MappingResult`.
- if num is None:
- # if None is passed, we don't know the default
- # manyrows number, DBAPI has this as cursor.arraysize
- # different DBAPIs / fetch strategies may be different.
- # do a fetch to find what the number is. if there are
- # only fewer rows left, then it doesn't matter.
- if self._yield_per:
- num_required = num = self._yield_per
- else:
- rows = _manyrows(num)
- num = len(rows)
- collect.extend(
- filterrows(make_row, rows, strategy, uniques)
- )
- num_required = num - len(collect)
- else:
- num_required = num
+ When this filter is applied, fetching rows will return
+ :class:`.RowMapping` objects instead of :class:`.Row` objects.
- while num_required:
- rows = _manyrows(num_required)
- if not rows:
- break
+ .. versionadded:: 1.4
- collect.extend(
- filterrows(make_row, rows, strategy, uniques)
- )
- num_required = num - len(collect)
+ :return: a new :class:`_result.MappingResult` filtering object
+ referring to this :class:`_result.Result` object.
- if post_creational_filter:
- collect = [post_creational_filter(row) for row in collect]
- return collect
+ """
- else:
+ return MappingResult(self)
- def manyrows(self, num):
- if num is None:
- num = self._yield_per
+ def _raw_row_iterator(self):
+ """Return a safe iterator that yields raw row data.
- rows = self._fetchmany_impl(num)
- if make_row:
- rows = [make_row(row) for row in rows]
- if post_creational_filter:
- rows = [post_creational_filter(row) for row in rows]
- return rows
+ This is used by the :meth:`._engine.Result.merge` method
+ to merge multiple compatible results together.
- return manyrows
+ """
+ raise NotImplementedError()
def _fetchiter_impl(self):
raise NotImplementedError()
next = __next__
+ def partitions(self, size=None):
+ # type: (Optional[Int]) -> Iterator[List[Row]]
+ """Iterate through sub-lists of rows of the size given.
+
+ Each list will be of the size given, excluding the last list to
+ be yielded, which may have a small number of rows. No empty
+ lists will be yielded.
+
+ The result object is automatically closed when the iterator
+ is fully consumed.
+
+ Note that the backend driver will usually buffer the entire result
+ ahead of time unless the
+ :paramref:`.Connection.execution_options.stream_results` execution
+ option is used indicating that the driver should not pre-buffer
+ results, if possible. Not all drivers support this option and
+ the option is silently ignored for those who do.
+
+ .. versionadded:: 1.4
+
+ :param size: indicate the maximum number of rows to be present
+ in each list yielded. If None, makes use of the value set by
+ :meth:`_engine.Result.yield_per`, if present, otherwise uses the
+ :meth:`_engine.Result.fetchmany` default which may be backend
+ specific.
+
+ :return: iterator of lists
+
+ """
+
+ getter = self._manyrow_getter
+
+ while True:
+ partition = getter(self, size)
+ if partition:
+ yield partition
+ else:
+ break
+
def fetchall(self):
+ # type: () -> List[Row]
"""A synonym for the :meth:`_engine.Result.all` method."""
return self._allrows()
def fetchone(self):
+ # type: () -> Row
"""Fetch one row.
When all rows are exhausted, returns None.
- .. note:: This method is not compatible with the
- :meth:`_result.Result.scalars`
- filter, as there is no way to distinguish between a data value of
- None and the ending value. Prefer to use iterative / collection
- methods which support scalar None values.
-
This method is provided for backwards compatibility with
SQLAlchemy 1.x.x.
:return: a :class:`.Row` object if no filters are applied, or None
if no rows remain.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalar`, different kinds of objects
- may be returned.
"""
- if self._no_scalar_onerow:
- raise exc.InvalidRequestError(
- "Can't use fetchone() when returning scalar values; there's "
- "no way to distinguish between end of results and None"
- )
row = self._onerow_getter(self)
if row is _NO_ROW:
return None
return row
def fetchmany(self, size=None):
+ # type: (Optional[Int]) -> List[Row]
"""Fetch many rows.
When all rows are exhausted, returns an empty list.
To fetch rows in groups, use the :meth:`._result.Result.partitions`
method.
- :return: a list of :class:`.Row` objects if no filters are applied.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalar`, different kinds of objects
- may be returned.
+ :return: a list of :class:`.Row` objects.
"""
+
return self._manyrow_getter(self, size)
def all(self):
+ # type: () -> List[Row]
"""Return all rows in a list.
Closes the result set after invocation. Subsequent invocations
- will return an empty list.
-
- .. versionadded:: 1.4
-
- :return: a list of :class:`.Row` objects if no filters are applied.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalar`, different kinds of objects
- may be returned.
-
- """
- return self._allrows()
-
- def _only_one_row(self, raise_for_second_row, raise_for_none, scalar):
- onerow = self._fetchone_impl
-
- row = onerow(hard_close=True)
- if row is None:
- if raise_for_none:
- raise exc.NoResultFound(
- "No row was found when one was required"
- )
- else:
- return None
-
- if scalar and self._source_supports_scalars:
- make_row = None
- else:
- make_row = self._row_getter
-
- row = make_row(row) if make_row else row
-
- if raise_for_second_row:
- if self._unique_filter_state:
- # for no second row but uniqueness, need to essentially
- # consume the entire result :(
- uniques, strategy = self._unique_strategy
-
- existing_row_hash = strategy(row) if strategy else row
-
- while True:
- next_row = onerow(hard_close=True)
- if next_row is None:
- next_row = _NO_ROW
- break
-
- next_row = make_row(next_row) if make_row else next_row
-
- if strategy:
- if existing_row_hash == strategy(next_row):
- continue
- elif row == next_row:
- continue
- # here, we have a row and it's different
- break
- else:
- next_row = onerow(hard_close=True)
- if next_row is None:
- next_row = _NO_ROW
-
- if next_row is not _NO_ROW:
- self._soft_close(hard=True)
- raise exc.MultipleResultsFound(
- "Multiple rows were found when exactly one was required"
- if raise_for_none
- else "Multiple rows were found when one or none "
- "was required"
- )
- else:
- next_row = _NO_ROW
+ will return an empty list.
- if not raise_for_second_row:
- # if we checked for second row then that would have
- # closed us :)
- self._soft_close(hard=True)
+ .. versionadded:: 1.4
- if not scalar:
- post_creational_filter = self._post_creational_filter
- if post_creational_filter:
- row = post_creational_filter(row)
+ :return: a list of :class:`.Row` objects.
- if scalar and make_row:
- return row[0]
- else:
- return row
+ """
+
+ return self._allrows()
def first(self):
+ # type: () -> Row
"""Fetch the first row or None if no row is present.
Closes the result set and discards remaining rows.
.. comment: A warning is emitted if additional rows remain.
- :return: a :class:`.Row` object if no filters are applied, or None
+ :return: a :class:`.Row` object, or None
if no rows remain.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalars`, different kinds of objects
- may be returned.
.. seealso::
return self._only_one_row(False, False, False)
def one_or_none(self):
+ # type: () -> Optional[Row]
"""Return at most one result or raise an exception.
Returns ``None`` if the result has no rows.
.. versionadded:: 1.4
:return: The first :class:`.Row` or None if no row is available.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalar`, different kinds of objects
- may be returned.
:raises: :class:`.MultipleResultsFound`
return self._only_one_row(True, False, False)
def scalar_one(self):
+ # type: () -> Any
"""Return exactly one scalar result or raise an exception.
This is equvalent to calling :meth:`.Result.scalars` and then
return self._only_one_row(True, True, True)
def scalar_one_or_none(self):
+ # type: () -> Optional[Any]
"""Return exactly one or no scalar result.
This is equvalent to calling :meth:`.Result.scalars` and then
return self._only_one_row(True, False, True)
def one(self):
+ # type: () -> Row
"""Return exactly one row or raise an exception.
Raises :class:`.NoResultFound` if the result returns no
.. versionadded:: 1.4
:return: The first :class:`.Row`.
- When filters are applied, such as :meth:`_engine.Result.mappings`
- or :meth:`._engine.Result.scalar`, different kinds of objects
- may be returned.
:raises: :class:`.MultipleResultsFound`, :class:`.NoResultFound`
return self._only_one_row(True, True, False)
def scalar(self):
+ # type: () -> Optional[Any]
"""Fetch the first column of the first row, and close the result set.
Returns None if there are no rows to fetch.
"""
return self._only_one_row(False, False, True)
+ def freeze(self):
+ """Return a callable object that will produce copies of this
+ :class:`.Result` when invoked.
+
+ The callable object returned is an instance of
+ :class:`_engine.FrozenResult`.
+
+ This is used for result set caching. The method must be called
+ on the result when it has been unconsumed, and calling the method
+ will consume the result fully. When the :class:`_engine.FrozenResult`
+ is retrieved from a cache, it can be called any number of times where
+ it will produce a new :class:`_engine.Result` object each time
+ against its stored set of rows.
+
+ .. seealso::
+
+ :ref:`do_orm_execute_re_executing` - example usage within the
+ ORM to implement a result-set cache.
+
+ """
+
+ return FrozenResult(self)
+
+ def merge(self, *others):
+ """Merge this :class:`.Result` with other compatible result
+ objects.
+
+ The object returned is an instance of :class:`_engine.MergedResult`,
+ which will be composed of iterators from the given result
+ objects.
+
+ The new result will use the metadata from this result object.
+ The subsequent result objects must be against an identical
+ set of result / cursor metadata, otherwise the behavior is
+ undefined.
+
+ """
+ return MergedResult(self._metadata, (self,) + others)
+
+
+class FilterResult(ResultInternal):
+ """A wrapper for a :class:`_engine.Result` that returns objects other than
+ :class:`_result.Row` objects, such as dictionaries or scalar objects.
+
+ """
+
+ _post_creational_filter = None
+
+ def _soft_close(self, hard=False):
+ self._real_result._soft_close(hard=hard)
+
+ @property
+ def _attributes(self):
+ return self._real_result._attributes
+
+ def __iter__(self):
+ return self._iterator_getter(self)
+
+ def __next__(self):
+ row = self._onerow_getter(self)
+ if row is _NO_ROW:
+ raise StopIteration()
+ else:
+ return row
+
+ next = __next__
+
+ def _fetchiter_impl(self):
+ return self._real_result._fetchiter_impl()
+
+ def _fetchone_impl(self, hard_close=False):
+ return self._real_result._fetchone_impl(hard_close=hard_close)
+
+ def _fetchall_impl(self):
+ return self._real_result._fetchall_impl()
+
+ def _fetchmany_impl(self, size=None):
+ return self._real_result._fetchmany_impl(size=size)
+
+
+class ScalarResult(FilterResult):
+ """A wrapper for a :class:`_result.Result` that returns scalar values
+ rather than :class:`_row.Row` values.
+
+ The :class:`_result.ScalarResult` object is acquired by calling the
+ :meth:`_result.Result.scalars` method.
+
+ A special limitation of :class:`_result.ScalarResult` is that it has
+ no ``fetchone()`` method; since the semantics of ``fetchone()`` are that
+ the ``None`` value indicates no more results, this is not compatible
+ with :class:`_result.ScalarResult` since there is no way to distinguish
+ between ``None`` as a row value versus ``None`` as an indicator. Use
+ ``next(result)`` to receive values individually.
+
+ """
+
+ _generate_rows = False
+
+ def __init__(self, real_result, index):
+ self._real_result = real_result
+
+ if real_result._source_supports_scalars:
+ self._metadata = real_result._metadata
+ self._post_creational_filter = None
+ else:
+ self._metadata = real_result._metadata._reduce([index])
+ self._post_creational_filter = operator.itemgetter(0)
+
+ self._unique_filter_state = real_result._unique_filter_state
+
+ def unique(self, strategy=None):
+ # type: () -> ScalarResult
+ """Apply unique filtering to the objects returned by this
+ :class:`_engine.ScalarResult`.
+
+ See :meth:`_engine.Result.unique` for usage details.
+
+ """
+ self._unique_filter_state = (set(), strategy)
+ return self
+
+ def partitions(self, size=None):
+ # type: (Optional[Int]) -> Iterator[List[Any]]
+ """Iterate through sub-lists of elements of the size given.
+
+ Equivalent to :meth:`_result.Result.partitions` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+
+ getter = self._manyrow_getter
+
+ while True:
+ partition = getter(self, size)
+ if partition:
+ yield partition
+ else:
+ break
+
+ def fetchall(self):
+ # type: () -> List[Any]
+ """A synonym for the :meth:`_engine.ScalarResult.all` method."""
+
+ return self._allrows()
+
+ def fetchmany(self, size=None):
+ # type: (Optional[Int]) -> List[Any]
+ """Fetch many objects.
+
+ Equivalent to :meth:`_result.Result.fetchmany` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._manyrow_getter(self, size)
+
+ def all(self):
+ # type: () -> List[Any]
+ """Return all scalar values in a list.
+
+ Equivalent to :meth:`_result.Result.all` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._allrows()
+
+ def first(self):
+ # type: () -> Optional[Any]
+ """Fetch the first object or None if no object is present.
+
+ Equivalent to :meth:`_result.Result.first` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+
+ """
+ return self._only_one_row(False, False, False)
+
+ def one_or_none(self):
+ # type: () -> Optional[Any]
+ """Return at most one object or raise an exception.
+
+ Equivalent to :meth:`_result.Result.one_or_none` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._only_one_row(True, False, False)
+
+ def one(self):
+ # type: () -> Any
+ """Return exactly one object or raise an exception.
+
+ Equivalent to :meth:`_result.Result.one` except that
+ scalar values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._only_one_row(True, True, False)
+
+
+class MappingResult(FilterResult):
+ """A wrapper for a :class:`_engine.Result` that returns dictionary values
+ rather than :class:`_engine.Row` values.
+
+ The :class:`_engine.MappingResult` object is acquired by calling the
+ :meth:`_engine.Result.mappings` method.
+
+ """
+
+ _generate_rows = True
+
+ _post_creational_filter = operator.attrgetter("_mapping")
+
+ def __init__(self, result):
+ self._real_result = result
+ self._unique_filter_state = result._unique_filter_state
+ self._metadata = result._metadata
+ if result._source_supports_scalars:
+ self._metadata = self._metadata._reduce([0])
+
+ def keys(self):
+ """Return an iterable view which yields the string keys that would
+ be represented by each :class:`.Row`.
+
+ The view also can be tested for key containment using the Python
+ ``in`` operator, which will test both for the string keys represented
+ in the view, as well as for alternate keys such as column objects.
+
+ .. versionchanged:: 1.4 a key view object is returned rather than a
+ plain list.
+
+
+ """
+ return self._metadata.keys
+
+ def unique(self, strategy=None):
+ # type: () -> MappingResult
+ """Apply unique filtering to the objects returned by this
+ :class:`_engine.MappingResult`.
+
+ See :meth:`_engine.Result.unique` for usage details.
+
+ """
+ self._unique_filter_state = (set(), strategy)
+ return self
+
+ def columns(self, *col_expressions):
+ # type: (*object) -> MappingResult
+ r"""Establish the columns that should be returned in each row.
+
+
+ """
+ return self._column_slices(col_expressions)
+
+ def partitions(self, size=None):
+ # type: (Optional[Int]) -> Iterator[List[Mapping]]
+ """Iterate through sub-lists of elements of the size given.
+
+ Equivalent to :meth:`_result.Result.partitions` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+
+ getter = self._manyrow_getter
+
+ while True:
+ partition = getter(self, size)
+ if partition:
+ yield partition
+ else:
+ break
+
+ def fetchall(self):
+ # type: () -> List[Mapping]
+ """A synonym for the :meth:`_engine.ScalarResult.all` method."""
+
+ return self._allrows()
+
+ def fetchone(self):
+ # type: () -> Mapping
+ """Fetch one object.
+
+ Equivalent to :meth:`_result.Result.fetchone` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+
+ row = self._onerow_getter(self)
+ if row is _NO_ROW:
+ return None
+ else:
+ return row
+
+ def fetchmany(self, size=None):
+ # type: (Optional[Int]) -> List[Mapping]
+ """Fetch many objects.
+
+ Equivalent to :meth:`_result.Result.fetchmany` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+
+ return self._manyrow_getter(self, size)
+
+ def all(self):
+ # type: () -> List[Mapping]
+ """Return all scalar values in a list.
+
+ Equivalent to :meth:`_result.Result.all` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+
+ return self._allrows()
+
+ def first(self):
+ # type: () -> Optional[Mapping]
+ """Fetch the first object or None if no object is present.
+
+ Equivalent to :meth:`_result.Result.first` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+
+ """
+ return self._only_one_row(False, False, False)
+
+ def one_or_none(self):
+ # type: () -> Optional[Mapping]
+ """Return at most one object or raise an exception.
+
+ Equivalent to :meth:`_result.Result.one_or_none` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._only_one_row(True, False, False)
+
+ def one(self):
+ # type: () -> Mapping
+ """Return exactly one object or raise an exception.
+
+ Equivalent to :meth:`_result.Result.one` except that
+ mapping values, rather than :class:`_result.Row` objects,
+ are returned.
+
+ """
+ return self._only_one_row(True, True, False)
+
class FrozenResult(object):
"""Represents a :class:`.Result` object in a "frozen" state suitable
def __init__(self, result):
self.metadata = result._metadata._for_freeze()
- self._post_creational_filter = result._post_creational_filter
- self._generate_rows = result._generate_rows
self._source_supports_scalars = result._source_supports_scalars
self._attributes = result._attributes
- result._post_creational_filter = None
if self._source_supports_scalars:
self.data = list(result._raw_row_iterator())
def with_new_rows(self, tuple_data):
fr = FrozenResult.__new__(FrozenResult)
fr.metadata = self.metadata
- fr._post_creational_filter = self._post_creational_filter
- fr._generate_rows = self._generate_rows
fr._attributes = self._attributes
fr._source_supports_scalars = self._source_supports_scalars
def __call__(self):
result = IteratorResult(self.metadata, iter(self.data))
- result._post_creational_filter = self._post_creational_filter
- result._generate_rows = self._generate_rows
result._attributes = self._attributes
result._source_supports_scalars = self._source_supports_scalars
return result
)
self._unique_filter_state = results[0]._unique_filter_state
- self._post_creational_filter = results[0]._post_creational_filter
- self._no_scalar_onerow = results[0]._no_scalar_onerow
self._yield_per = results[0]._yield_per
# going to try someting w/ this in next rev
self._source_supports_scalars = results[0]._source_supports_scalars
- self._generate_rows = results[0]._generate_rows
self._attributes = self._attributes.merge_with(
*[r._attributes for r in results]
)