added parser support for MySQL default values with a single quote
[dbsrgits/SQL-Translator.git] / Changes
1 # ----------------------------------------------------------
2 # x.xxxxx xxxx-xx-xx
3 # ----------------------------------------------------------
4 * Add parser support for MySQL default values with a single quote
5 * Properly quote absolute table names in the MySQL producer
6 * Added semi-colon for (DROP|CREATE) TYPE statements in the Pg producer (wreis)
7 * Added CREATE VIEW subrules for mysql parser (wreis)
8 * ALTER TABLE/ALTER COLUMN/DROP DEFAULT support in Pg producer (mo)
9 * XML parser support for multi-event triggers
10 * SQLite producer support for multi-event triggers
11 * XML parser switched from XML::XPath to XML::LibXML
12 * Pg producer ALTER TABLE/COLUMN and DROP DEFAULT support
13 * MySQL producer skips length attribute for columns which do not support that
14   attribute. Currently following column types are added to that list:
15   date time timestamp datetime year
16 * Sitch to Module::Install (mandates minimum perl 5.005)
17
18 # ----------------------------------------------------------
19 # 0.09004 2009-02-13
20 # ----------------------------------------------------------
21 * Add support for temporary tables in Pg (nachos)
22 * Create Trigger support for SQLite
23 * GraphViz producer improvements
24
25 # ----------------------------------------------------------
26 # 0.09003 2009-02-07
27 # ----------------------------------------------------------
28   <BORKED RELEASE DELETED OFF CPAN>
29
30 # ----------------------------------------------------------
31 # 0.09002 2008-12-05
32 # ----------------------------------------------------------
33 * parsing MySQL CURRENT_TIMESTAMP as scalar ref so it can be produced without 
34   quotes (jgoulah)
35 * Add ignore_opts parser arg (to ignore table options) in Parser::MySQL (jgoulah)
36 * Skip tests for buggy Spreadsheet::ParseExcel versions (rbo)
37 * Add support for skip tables parser arg in Parser::DBI::MySQL (jgoulah)
38 * Changed behaviour of ::Producer::Oracle when returning an array of statements 
39   to make it compatible to DBI->do()
40 * Fixed a few bugs in ::Producer::Oracle
41 * Applied patch from jgoulah to support mysql's MERGE option
42 * Applied patch from rbo to add support of multiple database events on a trigger
43 * Applied patch from lukes to allow drop if exists in sqlite producer, with 
44   version >= 3.3
45 * Applied patch from rjbs with minor changes, now we support scalar refs in 
46   default values!
47 * Fixed SQLite producer to end index statements in newlines, in scalar context
48 * Decreed that all list context statements shall not end in ; or ;\n
49 * Fixed SQLite, Diff and MySQL producers to agree with Decree.
50 * Added support for CREATE VIEW + tests in the Pg producer (wreis)
51 * Added support for CREATE VIEW + tests in the sqlite producer (groditi)
52 * Added proper argument parsing and documentation to MySQL Parser and 
53   Producer (ribasushi)
54 * Using DROP VIEW instead of OR REPLACE clause in the Pg producer, as replace 
55   only allows replacement with identical set of columns (wreis)
56 * Added support for DROP VIEW and fixed CREATE VIEW statement in the sqlite 
57   producer (wreis)
58 * Removed source_db and target_db accessors from Diff (throwback to old version, 
59   only output_db is used)
60
61
62 * Support for longer varchar fields in MySQL
63
64 # ----------------------------------------------------------
65 # 0.09001 2008-08-19
66 # ----------------------------------------------------------
67 * Added support for CREATE VIEW + tests in the mysql producer (groditi)
68 * Added support for SET fields in the mysql producer + test (groditi)
69 * Added support for proper booleans in the mysql producer, when a mysql version 
70   of at least 4.x is supplied
71 * Added support for proper enums under pg (as of 8.3), with pg version check, 
72   and deferrable constraints
73 * Added support to truncate long constraint and index names in the mysql 
74   producer, because of a change to DBIx::Class to produce such long names in 
75   some cases.
76
77 # ----------------------------------------------------------
78 # 0.09000 2008-02-25
79 # ----------------------------------------------------------
80
81 * Fix Pg produces idea of which field types need a size param (wreis)
82 * Add support for COLLATE table option to MySQL parser
83 * Allow DEFAULT CHARACTER SET without '=' (as produced by mysqldump)
84
85 # -----------------------------------------------------------
86 # 0.0899_02 2008-01-29
87 # ----------------------------------------------------------
88
89 * Major refactoring of SQL::Translator::Diff again:
90 * Diff is no longer one huge monolithic function.                         
91 * Added more tests for diff                                               
92 * When producing diffs for MySQL you will (by default) get single alter 
93   statements per table
94 * SQLite can also do remove columns (by creating a temp table as shown in 
95   http://sqlite.org/faq.html#q11
96 * Columns can be renamed if the new schema is from a form that can have metadata
97   (which is pretty much anything but an SQL file.) It does this by looking at 
98   renamed_from in the $field->extra                              
99 * Updated Oracle and Postgres producers
100 * More tests!
101
102 # -----------------------------------------------------------
103 # 0.0899_01 2007-10-21
104 # ----------------------------------------------------------
105
106 * SQL::Translator::Diff now uses the ::Producer modules to create diffs
107   This *will* break back-compatibility
108   Use sqlt-diff-old for the previous one, and fix producers!
109
110 # -----------------------------------------------------------
111 # 0.08001 2007-09-26
112 # ----------------------------------------------------------
113
114 * Patched to ignore all TT versions >= 2.15 until TT is fixed :(
115
116 # -----------------------------------------------------------
117 # 0.08 2006-12-07
118 # -----------------------------------------------------------
119
120 * Patched 18ttschema-producer.t and 33tt-table-producter.t to skip on TT 2.15, 
121   thanks Ash!
122
123 # -----------------------------------------------------------
124 # 0.08_04 2006-11-10
125 # -----------------------------------------------------------
126
127 * Patched MySQL producer to name constraints sanely, thanks Ash
128 * Added patch to Producer::DB2 to avoid dependency issues with foreign keys
129 * Added patch to remove single quotes for numeric default values in Producer::DB2
130 * Fixed Parser::SQLite to require a semicolon after a create trigger statement
131 * Added patch from avinash to add CASCADE to pg table drops
132
133 # -----------------------------------------------------------
134 # 0.08_03
135 # -----------------------------------------------------------
136
137 * Added patch to use default values for Pg timestamp fields
138
139 # -----------------------------------------------------------
140 # 0.08_02    2006-11-03
141 # -----------------------------------------------------------
142
143 * Added patch from Ash to separate DROP statements in mysql producer in 
144   list-context
145 * Fixed up SQLites usage of no-comments
146
147 # -----------------------------------------------------------
148 # 0.08_01    2006-07-23
149 # -----------------------------------------------------------
150
151 * Made Trigger check that a give table exists in on_table - castaway
152 * Split some producers (DB2, MySQL, SQLite, PostgreSQL) into sub methods (others
153   to follow) - castaway
154 * Add alter_* methods to some Producers and docs to Producer.pm (for use by Diff
155   later) - castaway
156 * Made changes to allow producers to return a list of statements - castaway
157 * Split sqlt-diff into script and module - castaway
158 * Added quote_table_names and quote_field_names patch (omega, zamolxes) - castaway
159 * Added DB2 Producer - castaway
160 * Added mysql_character_set for 4.1+ -mda
161 * New filters, Names and Globals. -mda
162 * Added the initial work on a template based Dia UML producer. -mda
163
164 # -----------------------------------------------------------
165 # 0.07    2005-06-10
166 # -----------------------------------------------------------
167 *   YAML parser supports extra attributes on tables.
168
169 *   All schema objects now support the extra attribute, so can
170     have arbitary name/value data attached to them.
171
172 *   Refactoring: Added SQL::Translator::Schema::Object - base 
173     class for all Schema objects.
174
175 *   Changes to MySQL Parser (Dave Howorth)
176     - ignore INSERT statements
177     - permit ALTER TABLE ADD FOREIGN KEY
178     - allow trailing comma on last field in CREATE statements
179     - collect the database name
180
181 *   TTSchema Producer
182     - Can pass extra variables using tt_vars producer arg.
183     - Can pass extra config using tt_conf producer arg.
184     - Variables and config can be passed on the command line
185       with --tt-var and --tt-conf options to sqlt.
186
187 *   Added schema filters.
188
189 *   MySQL Producer
190     - Added 'mysql_table_type' extra attribute on tables.
191     - Works out InnoDB tables from constraints.
192     - mysql_charset and mysql_collate extra attributes for tables and fiels.
193
194
195 # -----------------------------------------------------------
196 # 0.06    2004-05-13
197 # -----------------------------------------------------------
198 *   Added SQL::Translator::Manual
199
200 *   Installation process now uses Module::Build
201
202 *   Added new "Dumper" producer
203
204 *   Changed the native SQL Fairy XML format to a fixed mapping.
205     *NB:* You should convert your existing XML schema. See the
206     SQL::Translator::Parser::XML::SQLFairy docs.
207
208 *   Added producers: TT::Base and TT::Table.
209
210 # -----------------------------------------------------------
211 # 0.05    2004-02-27
212 # -----------------------------------------------------------
213 *   Added "COMMENT ON *" syntax to PostgreSQL parser
214
215 *   Some fixes to Oracle parser as reported by Gail Binkley
216
217 *   Added support in PostgreSQL parser for all "ALTER TABLE" statements
218
219 *   Now distributing sqlt-diff script as it's pretty usable
220
221 *   Added new options to sqlt-graph and GraphViz producer (Dave Cash)
222
223 # -----------------------------------------------------------
224 # 0.04    2003-11-07
225 # -----------------------------------------------------------
226
227 *   Increased version of Constants module to 1.41 to avoid a problem 
228     where 0.02 has 1.4 of that file and 0.03 had 1.06 which confused
229     CPAN
230
231 *   Hard-coded all the PREREQ_PM modules in Makefile.PL (rather than
232     setting them dynamically) so that automated tests would pass
233
234 # -----------------------------------------------------------
235 # 0.03    2003-11-06
236 # -----------------------------------------------------------
237
238 *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL, 
239     DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
240
241 *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
242
243 *   HTML producer now uses stylesheets to allow easy customization of colors
244
245 *   Many bug fixes to most every module
246
247 *   Added "sqlt-dumper" script to help create a script for dumping
248     a database a la "mysqldump"
249
250 *   Reversed the arrowheads on the graphical producers to show the 
251     relationships in a more standard way
252
253 *   Changes all included script names to start with "sqlt"
254
255 *   Added capturing and printing most embedded table and field comments
256
257 # -----------------------------------------------------------
258 # 0.02    2003-06-17
259 # -----------------------------------------------------------
260
261 *   Added parsers for Excel and Oracle
262
263 *   Removed Sybase parser because it didn't actually work
264
265 *   Added ClassDBI, Diagram, GraphViz, HTML, POD, SQLite, Sybase producers
266
267 *   Added Schema classes to represent schema as objects
268
269 *   Removed "Raw" producer in favor of the Schema classes
270
271 *   Removed "Validator" class as the Schema classes validate themselves
272
273 *   Improved all existing parsers and producers, expanding them to 
274     handle foreign keys much better, produce better output, etc.
275
276 *   Added sqlt-diagram.pl and sqlt-graphviz.pl as CLI frontends to the 
277     graphical producers
278
279 *   Added sql_translator.cgi as a web-form frontend to graphical producers
280
281 *   Expanded test suite
282
283 # -----------------------------------------------------------
284 # 0.01    2003-02-27
285 # -----------------------------------------------------------
286
287 *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL, 
288     DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
289
290 *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
291
292 *   HTML producer now uses stylesheets to allow easy customization of colors
293
294 *   Many bug fixes to most every module
295
296 *   Added "sqlt-dumper" script to help create a script for dumping
297     a database a la "mysqldump"
298
299 *   Reversed the arrowheads on the graphical producers to show the 
300     relationships in a more standard way
301
302 *   Changes all included script names to start with "sqlt"
303
304 *   Added capturing and printing most embedded table and field comments