Just found this little handy feature today:

So now if you press CTRL-C MySQL Command Line Client will not exit but will terminate query being executed. This is great as so many queries assumed CTRL-C would also abort running query in previous MySQL versions and I’ve seen many monstrous queries left running without noticing just because people would think CTRL-C terminated the query. Now it finally really does.

Great Job! I wish I would see more of such relatively simple but very handy improvements 🙂

9 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Paul DuBois

This was introduced in 5.0.25 (and 5.1.10).

http://dev.mysql.com/doc/refman/5.0/en/news-5-0-25.html

jim

i did that.

Harrison Fisk

I helped with it 😉

jim

that’s right! i forgot that what i did was based on harrison’s initial patch.

Perrin Harkins

I agree: great feature! Very helpful.

Moazzam

You guys rock! It’s very handy. Using that you can even do a select and an insert in the same query from the same table. It randomly messes up the MYI files, though (which can be repaired by table repair command). It would be great if it didn’t.

I did something like this :

insert into table1 (id, serial_no) select ‘asd’ as id, count(name) as serial_no from where category=’blah’

Moazzam

It won’t let me edit my comment so I am posting a new one. I had an error in the query I posted. Here is the right one :

insert into table1 (id, serial_no) select ‘asd’ as id, count(name) as serial_no from table1 table1_1 where category=’blah’