Adding versions to the Changelog
[clsql.git] / tests / test-fdml.lisp
index 053dbc45f7c02a0a9ee0304663ed1b3d7f96443a..74ed254e4d3acec47296a61202d2ec9314e22529 100644 (file)
@@ -3,7 +3,6 @@
 ;;;; File:    test-fdml.lisp
 ;;;; Author:  Marcus Pearce <m.t.pearce@city.ac.uk>, Kevin Rosenberg
 ;;;; Created: 30/03/2004
-;;;; Updated: $Id$
 ;;;;
 ;;;; Tests for the CLSQL Functional Data Manipulation Language
 ;;;; (FDML).
   t (2 3 4 5 6 7 8 9 10))
 
 
-(deftest :fdml/execute-command/1
-    (with-dataset *ds-employees*
-      (values
-       (clsql:table-exists-p [foo] :owner *test-database-user*)
-       (progn
-         (clsql:execute-command "create table foo (bar integer)")
-         (clsql:table-exists-p [foo] :owner *test-database-user*))
-       (progn
-         (clsql:execute-command "drop table foo")
-         (clsql:table-exists-p [foo] :owner *test-database-user*))))
-  nil t nil)
-
-
 ;; compare min, max and average hieghts in inches (they're quite short
 ;; these guys!)
 (deftest :fdml/select/1
   (("Yuri" "Gagarin" "gagarin@soviet.org"))
   (("Vladimir" "Lenin" "lenin@soviet.org")))
 
-
-
 ;; starts a transaction deletes a record and then rolls back the deletion
 (deftest :fdml/transaction/1
     (with-dataset *ds-employees*