You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ssql/tests/pgsql-test.scm

18 lines
574 B
Scheme

(load-relative "../ssql-pgsql")
(import ssql)
(import ssql-pgsql)
(use test postgresql foops)
(define *test-pgsql-translator*
(derive-object (*pgsql-translator* self super)
((escape-string string)
(super (ssql-connection) string))))
(register-sql-engine! (lambda (x) (eq? x #t)) *test-pgsql-translator*)
(test-begin "selects")
(test "Simple query"
"(SELECT actors.firstname, actors.lastname (FROM actors))"
(ssql->sql #t `(select (columns actors.firstname actors.lastname)
(from actors))))
(test-end "selects")