MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / memory_process_intensive

Method memory_process_intensive

test/requirements.py:448–462  ·  view source on GitHub ↗

Driver is able to handle the memory tests which run in a subprocess and iterate through hundreds of connections

(self)

Source from the content-addressed store, hash-verified

446
447 @property
448 def memory_process_intensive(self):
449 """Driver is able to handle the memory tests which run in a subprocess
450 and iterate through hundreds of connections
451
452 """
453 return skip_if(
454 [
455 no_support("oracle", "Oracle XE usually can't handle these"),
456 no_support(
457 "mssql", "MS drivers struggle plus the DB does too"
458 ),
459 no_support("+aiosqlite", "very unreliable driver"),
460 self._running_on_windows(),
461 ]
462 )
463
464 @property
465 def updateable_autoincrement_pks(self):

Callers

nothing calls this directly

Calls 3

skip_ifFunction · 0.90
no_supportFunction · 0.85
_running_on_windowsMethod · 0.80

Tested by

no test coverage detected