From 16eecd9a121de81e483f448ab0a52e2d22c7ed33 Mon Sep 17 00:00:00 2001 From: Chris Allan Date: Mon, 8 Jul 2024 12:17:20 +0000 Subject: [PATCH] Add documentation for ome/omero-py#418 --- omero/developers/Tables.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/omero/developers/Tables.rst b/omero/developers/Tables.rst index 0e42331283..aa62f37b77 100644 --- a/omero/developers/Tables.rst +++ b/omero/developers/Tables.rst @@ -199,7 +199,11 @@ Main methods .. note:: `start=0, stop=0` currently returns the first row instead of empty as would be expected using the normal Python range - semantics. This may change in future. + semantics. This may change in future. If you do not need the + row numbers that match your read returned in the + :class:`~omero.grid.Data` object you can set + `omero.tables.include_row_numbers` to `false` in the Ice + context passed when you make the call. .. method:: slice(colNumbers, rowNumbers) @@ -214,6 +218,11 @@ Main methods :return: The requested columns and rows as a :class:`~omero.grid.Data` object. + .. note:: If you do not need the row numbers that match your read + returned in the :class:`~omero.grid.Data` object you can set + `omero.tables.include_row_numbers` to `false` in the Ice + context passed when you make the call. + .. method:: getWhereList(condition, variables, start, stop, step) Run a query on a table, see :ref:`tables-query-language`.