MCPcopy Create free account
hub / github.com/Mause/duckdb_engine / fetchmany

Method fetchmany

duckdb_engine/__init__.py:172–176  ·  view source on GitHub ↗
(self, size: Optional[int] = None)

Source from the content-addressed store, hash-verified

170 return getattr(self.__c, name)
171
172 def fetchmany(self, size: Optional[int] = None) -> List:
173 if size is None:
174 return self.__c.fetchmany()
175 else:
176 return self.__c.fetchmany(size)
177
178
179class DuckDBEngineWarning(Warning):

Callers 1

test_fetchmanyFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_fetchmanyFunction · 0.64