Developer

« Return to index ‹ #123 #125 › ⊕ View reports

#124: New crash in r2120

Type: Crash First reported: 16 Apr 2010
Status: Fixed Last modified: 27 Sep 2010
Occurrences: 90 Fixed: In revision r2702
Thread 10 Crashed:
0 libobjc.A.dylib 0x00007fff867452c8 objc_msgSend_vtable11 + 16
1 com.google.code.sequel-pro 0x00000001000763d4 -[SPSQLParser firstOccurrenceOfCharacter:afterIndex:skippingBrackets:ignoringQuotedStrings:] + 340
2 com.google.code.sequel-pro 0x0000000100076279 -[SPSQLParser firstOccurrenceOfCharacter:afterIndex:ignoringQuotedStrings:] + 25
3 com.google.code.sequel-pro 0x000000010007589a -[SPSQLParser trimAndReturnStringToCharacter:trimmingInclusively:returningInclusively:ignoringQuotedStrings:] + 122
4 com.google.code.sequel-pro 0x0000000100075819 -[SPSQLParser trimAndReturnStringToCharacter:trimmingInclusively:returningInclusively:] + 25
5 com.google.code.sequel-pro 0x000000010003af27 -[TableDump importSQLFile:] + 3591
6 com.google.code.sequel-pro 0x000000010003a11a -[TableDump importBackgroundProcess:] + 250
7 com.apple.Foundation 0x00007fff839cdead __NSThread__main__ + 1429
8 libSystem.B.dylib 0x00007fff835918b6 _pthread_start + 331
9 libSystem.B.dylib 0x00007fff83591769 thread_start + 13

Comments

Comment with feedback submission on 16 Apr 2010
I was importing 103kb file into new database. Previously it happened while exporting over SSH.
Comment with feedback submission on 7 May 2010
just tried to batch import stored procedures and functions. If you'd like a copy of them, email me and I will send the file
Comment with feedback submission on 10 May 2010
import mysql dump
Comment with feedback submission on 12 May 2010
Imported an SQL file
Comment with feedback submission on 15 May 2010
DRECKSOFTWARE
Comment with feedback submission on 7 Jun 2010
come on guys pleae fix this bloody buggy seqelNOT PRO
Comment with feedback submission on 16 Jun 2010
Import a script file for a custom function
Comment with feedback submission on 22 Jun 2010
I was importing a sql script.
Comment with feedback submission on 14 Jul 2010
import an sql file
Comment with feedback submission on 3 Aug 2010
Seems not to like delimiters
Comment with feedback submission on 24 Aug 2010
tried to import an arbitrary SQL file (which may have had errors in it)
Comment with feedback submission on 30 Aug 2010
executing an import script with table updates and a create procedure statement
Comment with feedback submission on 1 Sep 2010
Imported a 290 MB database
Comment with feedback submission on 4 Sep 2010
Try to import data from a pg database.
Comment with feedback submission on 8 Sep 2010
tried importing an sql file output from phpmyadmin; an sql file with a dump of the same database worked with CREATE FUNCTION / PROCEDURE turned off
Comment with feedback submission on 8 Sep 2010
create procedure
Comment with feedback submission on 8 Sep 2010
Import of this file:
-- myprocs.sql

-- Ron Patterson, BPWC

delimiter //

drop procedure if exists add_customer//
create procedure add_customer (
in mdr_pin integer,
in mc_contact varchar(255),
in mc_school_nm varchar(255),
in mc_addr1 varchar(100),
in mc_addr2 varchar(100),
in mc_city varchar(100),
in mc_state varchar(4),
in mc_zip_4 varchar(20),
in mc_phone varchar(20),
in mc_fax varchar(20),
in mc_sch_type char(1),
in mc_email varchar(50),
out result integer
)
begin
-- declare continue handler for sqlwarning begin end;
declare continue handler for sqlexception set result = -1;
-- mdr_pin, master_id, mc_contact, mc_school_nm, mc_addr1, mc_addr2, mc_city, mc_state, mc_zip_4, mc_phone, mc_fax, mc_sch_type, mc_email, mc_vg_code, mc_notes, mc_create_dtm, mc_update_dtm, mc_update_by
insert into mdr_customers (mdr_pin, mc_contact, mc_school_nm, mc_addr1, mc_addr2, mc_city, mc_state, mc_zip_4, mc_phone, mc_fax, mc_sch_type, mc_email, mc_create_dtm)
values (mdr_pin, mc_contact, mc_school_nm, mc_addr1, mc_addr2, mc_city, mc_state, mc_zip_4, mc_phone, mc_fax, mc_sch_type, mc_email, now());
select last_insert_id() into result;
end;
//

-- call `add_customer`(123, 'Ron', 'RP', '9876 xyz', null, 'colo sprgs', 'CO', '98765', '719-555-1212', null, 'h', 'ron@foo.com', @result);

delimiter ;
Comment with feedback submission on 23 Sep 2010
I was importing an 88.3Mb database script using File->Import into a newly created database.
Comment with feedback submission on 23 Sep 2010
Did exactly the same thing as before - imported an 88.3Mb script to create the table sin a fresh database. I am investigatin the file to see if there is anything suspicious. It was created using phpMyAdmin on a remote Linux server.
Comment by rowan on 27 Sep 2010
Status changed to "Fixed". Marked as fixed in r2702.
Comment with feedback submission on 28 Sep 2010
imported a .sql file
Comment with feedback submission on 17 Oct 2010
I exported and then imported a database and in the fucking end it crashed!
Comment with feedback submission on 20 Oct 2010
import sql file
Comment with feedback submission on 29 Oct 2010
imported a 1.6mb sql file
Comment with feedback submission on 8 Nov 2010
Imported a DB
Comment with feedback submission on 12 Nov 2010
importing 4 M sql dump file over ssh connection
Comment with feedback submission on 25 Nov 2010
import mysqldump
Comment with feedback submission on 28 Nov 2010
Imported a large database (300 MB or so), then imported some procedures (77k). Sequel Pro quit unexpectedly just after the procedures were imported.
Comment with feedback submission on 8 Dec 2010
Import exported sql
Comment with feedback submission on 14 Jan 2011
Import an sql file
Comment with feedback submission on 17 Jan 2011
I was importing an sql file to create a new database (export from phpmyadmin). The process seemed to hang with 7.4 KB of 7.4 KB completed, but the progress bar was at about 75%. I clicked on cancel and shortly thereafter the app closed.
Comment with feedback submission on 20 Jan 2011
importing some trigger definitions
Comment with feedback submission on 22 Jan 2011
importing database dump
Comment with feedback submission on 28 Jan 2011
imported a sql script
Comment with feedback submission on 4 Feb 2011
Imported a 7 meg dump
Comment with feedback submission on 4 Feb 2011
Imported and SQL file (phpMyAdmin export output)
Comment with feedback submission on 7 Feb 2011
Imported a query
Comment with feedback submission on 9 Feb 2011
imported sql dump
Comment with feedback submission on 21 Feb 2011
importing sql dump
Comment with feedback submission on 23 Feb 2011
installing some mysql-functions
Comment with feedback submission on 25 Feb 2011
importing sql dump
Comment with feedback submission on 27 Feb 2011
importing sql dump to localhost from another server
Comment with feedback submission on 2 Mar 2011
data import crashed sequel pro
Comment with feedback submission on 8 Mar 2011
import mysql dump
Comment with feedback submission on 10 Mar 2011
I was importing a mysqldump file
Comment with feedback submission on 16 Mar 2011
Attempted to open a manually made script.
Comment with feedback submission on 21 Mar 2011
import large sql database table
Comment with feedback submission on 23 Mar 2011
import
Comment with feedback submission on 24 Mar 2011
imported a big database dump
Comment with feedback submission on 24 Mar 2011
importing DB
Comment with feedback submission on 25 Mar 2011
pb occurred while importing a dump containing procedures

thx
Comment with feedback submission on 6 Apr 2011
import sql dump
Comment with feedback submission on 8 Apr 2011
was importing a 405MB sql file
Comment with feedback submission on 18 Apr 2011
importing SQL data from another DB
Comment with feedback submission on 22 Apr 2011
importing sql dump
Comment with feedback submission on 28 Apr 2011
Imported database schema + data into newly created db
Comment with feedback submission on 10 May 2011
import a sql dump
Comment with feedback submission on 17 May 2011
Imported triggers to remote SQL
Comment with feedback submission on 17 May 2011
Imported an SQL file from my local machine to an SQL DB connected via SSH.
Comment with feedback submission on 19 May 2011
try to import sql file
Comment with feedback submission on 24 May 2011
Was importing stored procedures.
Comment with feedback submission on 10 Jun 2011
Imported a 33 MB database dump
Comment with feedback submission on 24 Jun 2011
Imported a SQL dump
Comment with feedback submission on 27 Jun 2011
i tried to run a SQL dump from PostgreSQL on a MySQL database