I’ve now got a tool (almost complete) that slurps in a MySQL DB definition and spits out one for Postgres. I will post a link to it when I get creation of the enum tables working. (Instead of enums, Postgres uses constraints and extra tables.)
People doing this as a team:
-
Seattle
People doing this are also doing these things:
Entries from people on this team:
I had a few problems moving to FreeBSD 5 with MySQL, which ultimately caused by was shoddy code in InnoDB.
I just rewrote all our in-code SQL queries to be easily recognizable. They now all live in
FOO = <<-SQL
SELECT blah
FROM there
WHERE x = 1
SQLThis will help us with moving away from MySQL.
Bob has also been exploring Postgres performance, but his results are preliminary
How asinine is this?!? The best part is
“The auto-increment counter is stored only in main memory, not on disk.“
Let’s see how this lets us have fun.
- Create a table with an auto-increment key
- Insert two entries into said table
- Delete entry with greatest key; note key value
- Stop MySQL
- Start MySQL
- Insert a single entry into our favorite table
The newly inserted key value will be equal to the deleted key value. Wait, what? Another way to have fun with this is
- Create a table with an auto-increment key
- Insert a single entry into our favorite table; note key value
- Delete entry (using where id =); table should be empty
- Stop MySQL
- Start MySQL
- Insert a single entry into our favorite table
The newly inserted key value will be 1, regardless of the deleted key value. Why bother having auto_increment functionality if it always wants to reset itself?
Try this one!
create table A (i enum (‘a’) not null);
insert into A (i) values (‘b’)
Rather than failing the insert it inserts the empty-string into the enum column. What’s the point of having an enum?
autoincrement keys on InnoDB table types without binary logging turned on reset themselves upon a hard reboot, which happened to me on Friday by mistake. autoincrement keys are supposed to have a lifetime associated with the table. Crashing shouldn’t matter. This can have serious problems if the autoincrement value is used to assign message identifiers for delivery systems. Why can’t people just use PostgreSQL?
The following query doesn’t work in 4.1.
update animals set color=’spotted’ where genus in (select genus from elephant limit 1)
It doesn’t allow a limit clause on a subquery. Wonderful!

