Add numeric/decimal precision support to DB2 producer
[dbsrgits/SQL-Translator.git] / t / 43xml-to-db2.t
index 02a7bfd..a14a665 100644 (file)
@@ -53,6 +53,7 @@ DROP TABLE Another;
 
 CREATE TABLE Another (
   id INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1) NOT NULL,
+  num NUMERIC(10,2),
   PRIMARY KEY (id)
 );