MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / visit_mod_binary

Method visit_mod_binary

lib/sqlalchemy/dialects/oracle/base.py:1324–1328  ·  view source on GitHub ↗
(self, binary, operator, **kw)

Source from the content-addressed store, hash-verified

1322 super().__init__(*args, **kwargs)
1323
1324 def visit_mod_binary(self, binary, operator, **kw):
1325 return "mod(%s, %s)" % (
1326 self.process(binary.left, **kw),
1327 self.process(binary.right, **kw),
1328 )
1329
1330 def visit_now_func(self, fn, **kw):
1331 return "CURRENT_TIMESTAMP"

Callers

nothing calls this directly

Calls 1

processMethod · 0.45

Tested by

no test coverage detected