Revision 537
Added by Aaron Marcuse-Kubitza almost 13 years ago
PostgreSQL-MySQL.csv | ||
---|---|---|
1 | 1 |
"PostgreSQL","MySQL","Comments" |
2 |
"^--(?=\S)","$0 ",
|
|
2 |
"^--(?=\S)","\g<0> ",
|
|
3 | 3 |
"\bserial( NOT NULL\b)?","int(11)\1 AUTO_INCREMENT", |
4 | 4 |
"Integer","int(11)", |
5 | 5 |
"Boolean","int(1)", |
6 |
" with time zone\b","", |
|
7 |
"fulltext","\g<0>__" |
Also available in: Unified diff
PostgreSQL-MySQL.csv: Use \g<0> instead of \0 in replacements because \0 not supported. Replace fulltext with fulltext__ (note fulltext_ doesn't work).