slangmgh

Results 7 issues of slangmgh

Notify can only recieve when sendNotify is send through the same connection with the notify. ```nim proc testConnectionNotify(conn, conn2: apgConnection): Future[bool] {.async.} = var r1 = false var r2 =...

When send multiple sql, and some sql failed, we must wait untill pqgetResult(conn.pgconn) return nil, or else, the connection will remain unusable.

The current implementation of the getFreeConnection support only one call wait.

Because the listen/notify connection must be the same, and using apgPool doesn't promise it, so it is not proper when using apgPool to listen and notify, because they will get...

When using ``rtlib`` and doesn't specify the calling convention, nim's dynlib will use cdecl as default calling convention, but rtlib using ``nimcall``.

The following code will generate compiler error: ```nim import os template with_temp_file(name: string, body: untyped) = block: let file {.inject.} = open(name, fmWrite) try: body finally: file.close template with_temp_file(body: untyped)...

### Description The following code give wrong result: compile with --mm:refc and -d:danger I don't know it is the strformat or pairs problem, because change them will make the program...

refc