Overview
Comment: | Add ulex loading |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-wip |
Files: | files | file ages | folders |
SHA1: |
5b4dacbff273c38e8706c3aa60a2121d |
User & Date: | mrwellan on 2019-09-27 13:46:10 |
Other Links: | branch diff | manifest | tags |
Context
2019-09-27
| ||
16:04 | Better message on failed access to drop triggers on megatest.db check-in: 54f26c491b user: mrwellan tags: v1.65-wip | |
13:46 | Add ulex loading check-in: 5b4dacbff2 user: mrwellan tags: v1.65-wip | |
13:45 | Proper handling of errors when db disappears and trigger dropping is happening. check-in: fcf5650f1f user: mrwellan tags: v1.65-wip | |
Changes
Modified rmtmod.scm from [51e3e5440a] to [0228767cb5].
︙ | ︙ | |||
23 24 25 26 27 28 29 | (module rmtmod * (import scheme chicken data-structures extras) (import (prefix sqlite3 sqlite3:) posix typed-records srfi-18) (import commonmod) | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | (module rmtmod * (import scheme chicken data-structures extras) (import (prefix sqlite3 sqlite3:) posix typed-records srfi-18) (import commonmod) (use (prefix ulex ulex:)) ;; Hack to make these functions visible to the refactored code, goal is to eliminate these over time. (define (rmt:send-receive . params) #f) (define (http-transport:close-connections . params) #f) ;; from remote defstruct in common.scm (define (remote-conndat-set! . params) #f) (define (remote-server-url-set! . params) #f) |
︙ | ︙ |