X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Ftest-fdml.lisp;h=d2606c14b4419f038d8d0eecbb6a6d4a107af670;hb=162003a620fcbfabab5313887d0722f6168efd8c;hp=aa887770e3fd250e2052da2445ad2d5e1c060c40;hpb=cb677ee3bb1416762ef2efa767e10d87374d81c0;p=clsql.git diff --git a/tests/test-fdml.lisp b/tests/test-fdml.lisp index aa88777..d2606c1 100644 --- a/tests/test-fdml.lisp +++ b/tests/test-fdml.lisp @@ -373,8 +373,11 @@ ("Vlad" "Jose" "Leon" "Niki" "Leon" "Yuri" "Kons" "Mikh" "Bori" "Vlad")) (deftest :fdml/select/22 - (clsql:select [|| [first-name] " " [last-name]] :from [employee] - :flatp t :order-by [emplid] :field-names nil) + (case *test-database-underlying-type* + (:mssql (clsql:select [+ [first-name] " " [last-name]] :from [employee] + :flatp t :order-by [emplid] :field-names nil)) + (t (clsql:select [|| [first-name] " " [last-name]] :from [employee] + :flatp t :order-by [emplid] :field-names nil))) ("Vladimir Lenin" "Josef Stalin" "Leon Trotsky" "Nikita Kruschev" "Leonid Brezhnev" "Yuri Andropov" "Konstantin Chernenko" "Mikhail Gorbachev" "Boris Yeltsin" "Vladimir Putin"))