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