Shooter7119 / sequel-pro

Automatically exported from code.google.com/p/sequel-pro
Other
0 stars 0 forks source link

QuickLook daemon crashes when quicklooking an SQL file #896

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The sql file is 15 MB, if that matters, and it was created by mysqldump -A -a 
--add-drop-table

Exporting the same database using sequel pro doesn't reproduce the crash, so 
uit seems unique to mysqldump and large file size. 

Sequel Pro nightly build 2876

Process:         quicklookd [7068]
Path:            
/System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents
/MacOS/quicklookd
Identifier:      com.apple.QuickLookDaemon
Version:         2.2 (327.4)
Build Info:      QuickLook-3270400~5
Code Type:       X86-64 (Native)
Parent Process:  launchd [716]

PlugIn Path:       /Applications/ Mina program/Databas/Sequel Pro 
Nightly.app/Contents/Library/QuickLook/Sequel 
Pro.qlgenerator/Contents/MacOS/Sequel Pro
PlugIn Identifier: com.google.code.sequel-pro.qlgenerator
PlugIn Version:    1 (1.0)

Date/Time:       2010-11-12 13:42:03.237 +0100
OS Version:      Mac OS X 10.6.4 (10F569)
Report Version:  6

Interval Since Last Report:          1231602 sec
Crashes Since Last Report:           33
Per-App Interval Since Last Report:  91033 sec
Per-App Crashes Since Last Report:   2
Anonymous UUID:                      C1C38041-39F4-4946-9CA2-6FE92C53E86A

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000430000003b
Crashed Thread:  3  Dispatch queue: quicklookd.serialgenerator

...

Thread 3 Crashed:  Dispatch queue: quicklookd.serialgenerator
0   com.apple.CoreFoundation        0x00007fff81e2cc9c _CFAutoreleasePoolPop + 
188
1   com.apple.Foundation            0x00007fff87e9ee5f -[NSAutoreleasePool 
release] + 158
2   ...code.sequel-pro.qlgenerator  0x00000001003ac8b0 GeneratePreviewForURL + 
8820
3   com.apple.QuickLookFramework    0x00007fff87a78443 _QLPreviewRequestDispatch 
+ 95
4   com.apple.QuickLookDaemon       0x000000010000954a 0x100000000 + 38218
5   com.apple.QuickLookDaemon       0x0000000100009a9f 0x100000000 + 39583
6   libSystem.B.dylib               0x00007fff87d081b0 
_dispatch_call_block_and_release + 15
7   libSystem.B.dylib               0x00007fff87ce6d52 _dispatch_queue_drain + 
251
8   libSystem.B.dylib               0x00007fff87ce6bb4 _dispatch_queue_invoke + 
57
9   libSystem.B.dylib               0x00007fff87ce675e _dispatch_worker_thread2 
+ 252
10  libSystem.B.dylib               0x00007fff87ce6088 _pthread_wqthread + 353
11  libSystem.B.dylib               0x00007fff87ce5f25 start_wqthread + 13

... 

Full crash log in attached file

Original issue reported on code.google.com by johan.so...@gmail.com on 12 Nov 2010 at 1:04

Attachments:

GoogleCodeExporter commented 9 years ago
Hi,

just tried to reproduce mysqldump  Test -a --add-drop-table > ~/Desktop/m.sql 
which ends up in a 16.3 MB file and it worked.

Well the file size, for QuickLook it only parses the first 700 kB. It assumes 
UTF8 encoding, if that didn't work, we try the Cocoa encoding detection, if 
that fails we open it in Latin1. If that also failed we print out ...sql...

Which encoding is used? 

What happens if you delete let's say the last 100 lines for that file?

Do you have installed only the nightly build or the last released as well?

Do you have full access right to this directory where the file is stored?

Cheers,
--Hans

Original comment by bibiko@gmail.com on 12 Nov 2010 at 2:28

GoogleCodeExporter commented 9 years ago
Hi again,

could you please try the latest nightly build rev. 2880 whether you still 
encounter this problem?

Cheers,
--Hans

Original comment by bibiko@gmail.com on 12 Nov 2010 at 2:38

GoogleCodeExporter commented 9 years ago
FIle encoding is UTF-8 (no BOM).
The file is in my home directory so I have full access rights to it. 
I have version 0.9.8 installed as well. 

I could reproduce the crash by reducing the problem file down to just 
containing the help tables from the mysql db (397K). It still crashes. I've 
attached that file. 
Enjoy!

Original comment by johan.so...@gmail.com on 12 Nov 2010 at 2:40

Attachments:

GoogleCodeExporter commented 9 years ago
Build 2881. (2880 was signed incorrectly so I couldn't try that one)

Restarted finder and quicklookd with killall quicklookd.
Quicklook still crashes. 
Not sure what it takes to have the newer version used. The plugin binary file 
inside the package was last changed 23.53 GMT+1 yesterday, and info.plist still 
says    
<key>CFBundleVersion</key>
    <string>1.0</string>
I tried changing that to 1.0.1 but it didn't make any difference. The crash 
report immediately reported plugin version 1.0.1 so at least I know that no 
processes need to be restarted for a newer plugin version to be used. 

From the crash report:
PlugIn Path:       /Applications/ Mina program/Databas/Sequel Pro 
Nightly.app/Contents/Library/QuickLook/Sequel 
Pro.qlgenerator/Contents/MacOS/Sequel Pro
PlugIn Identifier: com.google.code.sequel-pro.qlgenerator
PlugIn Version:    1 (1.0.1)

Original comment by johan.so...@gmail.com on 13 Nov 2010 at 10:36

GoogleCodeExporter commented 9 years ago
Thanks very much for the test file - with that I was able to pin it down to 
automatic memory management within quicklookd; switching to explicit, manual 
memory management appears to have fixed that crasher in r2882.

bibiko, I'm leaving this open and assigned to you because of one line in the 
console:
quicklookd[8892]    This application is assuming that a particular image contains 
an NSBitmapImageRep, which is not a good assumption.  We are instantiating a 
bitmap so that whatever this is keeps working, but please do not do this. Break 
on _NSPrivateIconImageRepSubclassAssumedToBeBitmap to debug.  This will be 
logged only once.  This may break in the future.

It looks like the icon representations come back as NSIconImageReps, which 
don't respond correctly to TIFFRepresentationUsingCompression:factor:.  I'm not 
sure what to do about this; should we instead just use [[NSWorkspace 
sharedWorkspace] iconForFile:] to get the parent NSImage and work directly from 
that, instead of using the representations?

Original comment by rowanb@gmail.com on 15 Nov 2010 at 1:29

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Nice, but r2883 stil crashes quicklookd with the mysql-help.sql file. I've 
verified that it's using the correct version by editing the version number in 
info.plist och the quicklook plugin. 

Original comment by johan.so...@gmail.com on 15 Nov 2010 at 10:40

GoogleCodeExporter commented 9 years ago
Hi johan,

thanks for testing. After some hours I think I pinned down the underlying 
issue. It seems that for VERY long lines (esp. string values) the current QL 
generator approach fails due to timing/rendering issues.

I'm working on it. Please be patient :)

BTW you mentioned "still crashes" . For me QL doesn't crash, instead it 
displays the 'normal' icon with name and size.

Cheers,
--Hans

Original comment by bibiko@gmail.com on 15 Nov 2010 at 10:46

GoogleCodeExporter commented 9 years ago
Hi Johan,

could you please check the latest built rev. 2884. I tried to improve the 
stability, but still I came across with some issues.

After downloading the latest built please run in Terminal:  "qlmanage -r" and 
"qlmanage -r cache" to reload the QuickLook generators.

Many thanks!!!!

--Hans

Original comment by bibiko@gmail.com on 15 Nov 2010 at 12:07

GoogleCodeExporter commented 9 years ago
Sorry Hans, r2884 still crashing quicklookd (yes crashing), even after qlmanage 
-r  and qlmanage -r cache.
After the crash is reported I get a plain icon  as well (bbedit in my case 
since that's my default opener for that file extension)

Partial crash report

Process:         quicklookd [3054]
Path:            
/System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents
/MacOS/quicklookd
Identifier:      com.apple.QuickLookDaemon
Version:         2.2 (327.4)
Build Info:      QuickLook-3270400~5
Code Type:       X86-64 (Native)
Parent Process:  launchd [691]

PlugIn Path:       /Applications/ Mina program/Databas/Sequel Pro 
Nightly.app/Contents/Library/QuickLook/Sequel 
Pro.qlgenerator/Contents/MacOS/Sequel Pro
PlugIn Identifier: com.google.code.sequel-pro.qlgenerator
PlugIn Version:    1 (1.0)

Date/Time:       2010-11-15 13:39:09.456 +0100
OS Version:      Mac OS X 10.6.4 (10F569)
Report Version:  6

Interval Since Last Report:          1293263 sec
Crashes Since Last Report:           65
Per-App Interval Since Last Report:  98735 sec
Per-App Crashes Since Last Report:   32
Anonymous UUID:                      C1C38041-39F4-4946-9CA2-6FE92C53E86A

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000430000003b
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   com.apple.CoreFoundation        0x00007fff81e2cc9c _CFAutoreleasePoolPop + 
188
1   com.apple.Foundation            0x00007fff87e9ee5f -[NSAutoreleasePool 
release] + 158
2   ...code.sequel-pro.qlgenerator  0x00000001003aa614 GeneratePreviewForURL + 
196
3   com.apple.QuickLookFramework    0x00007fff87a78443 _QLPreviewRequestDispatch 
+ 95
4   com.apple.QuickLookDaemon       0x000000010000954a 0x100000000 + 38218
5   com.apple.QuickLookDaemon       0x0000000100009a9f 0x100000000 + 39583
6   com.apple.QuickLookFramework    0x00007fff87a692e2 
___QLGeneratorDispatchBlock_block_invoke_2 + 23
7   com.apple.CoreFoundation        0x00007fff81e81e09 __CFRunLoopDoBlocks + 297
8   com.apple.CoreFoundation        0x00007fff81e44906 __CFRunLoopRun + 3046
9   com.apple.CoreFoundation        0x00007fff81e4384f CFRunLoopRunSpecific + 575
10  com.apple.QuickLookDaemon       0x00000001000035bd 0x100000000 + 13757
11  com.apple.QuickLookDaemon       0x000000010000110c 0x100000000 + 4364

Original comment by johan.so...@gmail.com on 15 Nov 2010 at 12:43

GoogleCodeExporter commented 9 years ago
r2897 works much better but I still get an occasional crash when trying 
multiple times

Process:         quicklookd [10957]
Path:            
/System/Library/Frameworks/QuickLook.framework/Resources/quicklookd.app/Contents
/MacOS/quicklookd
Identifier:      com.apple.QuickLookDaemon
Version:         2.2 (327.4)
Build Info:      QuickLook-3270400~5
Code Type:       X86-64 (Native)
Parent Process:  launchd [691]

PlugIn Path:       /Applications/ Mina program/Databas/Sequel Pro 
Nightly.app/Contents/Library/QuickLook/Sequel 
Pro.qlgenerator/Contents/MacOS/Sequel Pro
PlugIn Identifier: com.google.code.sequel-pro.qlgenerator
PlugIn Version:    1 (1.0)

Date/Time:       2010-11-17 14:56:43.076 +0100
OS Version:      Mac OS X 10.6.4 (10F569)
Report Version:  6

Interval Since Last Report:          1366024 sec
Crashes Since Last Report:           80
Per-App Interval Since Last Report:  106694 sec
Per-App Crashes Since Last Report:   39
Anonymous UUID:                      C1C38041-39F4-4946-9CA2-6FE92C53E86A

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
*** error for object 0x10181ec08: incorrect checksum for freed object - object 
was probably modified after being freed.

Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   libSystem.B.dylib               0x00007fff87d1a3d6 __kill + 10
1   libSystem.B.dylib               0x00007fff87dba972 abort + 83
2   libSystem.B.dylib               0x00007fff87da9625 szone_error + 519
3   libSystem.B.dylib               0x00007fff87cd3dcf 
small_malloc_from_free_list + 724
4   libSystem.B.dylib               0x00007fff87cd06ea szone_malloc_should_clear 
+ 1951
5   libSystem.B.dylib               0x00007fff87ccff0a malloc_zone_malloc + 82
6   com.apple.CoreFoundation        0x00007fff81e02f3c 
__CFStrAllocateMutableContents + 44
7   com.apple.CoreFoundation        0x00007fff81e028d5 
__CFStringChangeSizeMultiple + 1413
8   com.apple.CoreFoundation        0x00007fff81e02113 CFStringAppend + 275
9   com.apple.CoreFoundation        0x00007fff81e2a9b8 
_CFStringAppendFormatAndArgumentsAux + 2904
10  com.apple.Foundation            0x00007fff87ed446a -[NSCFString 
appendFormat:] + 209
11  ...code.sequel-pro.qlgenerator  0x00000001003acc34 GeneratePreviewForURL + 
8276
12  com.apple.QuickLookFramework    0x00007fff87a78443 _QLPreviewRequestDispatch 
+ 95
13  com.apple.QuickLookDaemon       0x000000010000954a 0x100000000 + 38218
14  com.apple.QuickLookDaemon       0x0000000100009a9f 0x100000000 + 39583
15  com.apple.QuickLookFramework    0x00007fff87a692e2 
___QLGeneratorDispatchBlock_block_invoke_2 + 23
16  com.apple.CoreFoundation        0x00007fff81e81e09 __CFRunLoopDoBlocks + 297
17  com.apple.CoreFoundation        0x00007fff81e44906 __CFRunLoopRun + 3046
18  com.apple.CoreFoundation        0x00007fff81e4384f CFRunLoopRunSpecific + 575
19  com.apple.QuickLookDaemon       0x00000001000035bd 0x100000000 + 13757
20  com.apple.QuickLookDaemon       0x000000010000110c 0x100000000 + 4364

Original comment by johan.so...@gmail.com on 17 Nov 2010 at 1:58

GoogleCodeExporter commented 9 years ago

Original comment by stuart02 on 5 Dec 2010 at 9:11

GoogleCodeExporter commented 9 years ago

Original comment by stuart02 on 5 Dec 2010 at 9:11

GoogleCodeExporter commented 9 years ago
If I run this:

$ qlmanage -d 4 -p /Users/######/Desktop/test.sql

I get this error:

Testing Quick Look preview with files:
    /Users/######/Desktop/test.sql
[DEBUG] Registering <QLGenerator Built-in 0x100313000> for public.image
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/B
ookmark.qlgenerator> for com.apple.safari.bookmark
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/B
ookmark.qlgenerator> for com.apple.safari.history
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/C
ontact.qlgenerator> for public.vcard
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/C
ontact.qlgenerator> for com.apple.addressbook.person
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/C
ontact.qlgenerator> for com.apple.addressbook.group
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/F
ont.qlgenerator> for public.font
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/M
ail.qlgenerator> for com.apple.mail.emlx
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/M
ail.qlgenerator> for com.apple.mail.email
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/M
ovie.qlgenerator> for public.movie
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/Q
uartzComposer.qlgenerator> for com.apple.quartz-composer-composition
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/i
Cal.qlgenerator> for com.apple.ical.bookmark
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/i
Cal.qlgenerator> for com.apple.ical.bookmark.todo
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/i
Cal.qlgenerator> for com.apple.ical.ics
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/i
Cal.qlgenerator> for com.apple.ical.ics.event
[DEBUG] Registering <QLGenerator 
/System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/Generators/i
Cal.qlgenerator> for com.apple.ical.ics.todo
[DEBUG] Registering <QLGenerator Audio.qlgenerator> for public.audio
[DEBUG] Registering <QLGenerator Clippings.qlgenerator> for 
com.apple.finder.textclipping
[DEBUG] Registering <QLGenerator Clippings.qlgenerator> for 
com.apple.finder.pictclipping
[DEBUG] Registering <QLGenerator Clippings.qlgenerator> for com.apple.pict
[DEBUG] Registering <QLGenerator EPS.qlgenerator> for 
com.adobe.encapsulated-postscript
[DEBUG] Registering <QLGenerator EPS.qlgenerator> for 
com.adobe.illustrator.ai-image
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/iChat.qlgenerator> 
for com.apple.ichat.ichat
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/iChat.qlgenerator> 
for com.apple.ichat.transcript
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/MeshKit.qlgenerator> 
for org.khronos.collada.digital-asset-exchange
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.word.doc
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.word.dot
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.word.stationery
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.excel.xls
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.excel.xlt
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.powerpoint.ppt
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.powerpoint.pot
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for com.microsoft.powerpoint.pps
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.wordprocessingml.document
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.wordprocessingml.template
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.wordprocessingml.document.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.wordprocessingml.template.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.spreadsheetml.sheet
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.spreadsheetml.template
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.spreadsheetml.sheet.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.spreadsheetml.template.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.presentation
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.template.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.template
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.presentation.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.slideshow
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for org.openxmlformats.presentationml.slideshow.macroenabled
[DEBUG] Registering <QLGenerator /System/Library/QuickLook/Office.qlgenerator> 
for public.comma-separated-values-text
[DEBUG] Registering <QLGenerator Package.qlgenerator> for com.apple.package
[DEBUG] Registering <QLGenerator PDF.qlgenerator> for com.adobe.pdf
[DEBUG] Registering <QLGenerator StandardBundles.qlgenerator> for 
com.apple.application
[DEBUG] Registering <QLGenerator StandardBundles.qlgenerator> for 
com.apple.systempreference.prefpane
[DEBUG] Registering <QLGenerator Text.qlgenerator> for public.plain-text
[DEBUG] Registering <QLGenerator Text.qlgenerator> for public.rtf
[DEBUG] Registering <QLGenerator Text.qlgenerator> for com.apple.rtfd
[DEBUG] Registering <QLGenerator Text.qlgenerator> for 
org.oasis-open.opendocument.text
[DEBUG] Registering <QLGenerator Text.qlgenerator> for com.apple.property-list
[DEBUG] Registering <QLGenerator Text.qlgenerator> for public.xml
[DEBUG] Registering <QLGenerator Web.qlgenerator> for com.apple.webarchive
[DEBUG] Registering <QLGenerator Web.qlgenerator> for public.html
[DEBUG] Registering <QLGenerator Web.qlgenerator> for public.xhtml
[DEBUG] Registering <QLGenerator Web.qlgenerator> for public.svg-image
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
public.zip-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.gnu.gnu-zip-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
public.tar-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.gnu.gnu-zip-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.gnu.gnu-zip-tar-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.sun.java-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.allume.stuffit-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.amiga.adf-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.amiga.adz-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.apple.self-extracting-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.microsoft.cab-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.rarlab.rar-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.redhat.rpm-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.symantec.diskdoubler-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
com.winace.ace-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.cbr-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.cbz-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.compress-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.compress-tar-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.dcs-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.dms-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.ha-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.lha-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.lhf-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.lzx-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.packdev-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.xmash-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.zoom-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.7-zip.7-zip-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.bzip.bzip2-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
org.bzip.bzip2-tar-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/Archive.qlgenerator> for 
cx.c3.pax-archive
[DEBUG] Registering <QLGenerator /Library/QuickLook/GBQLGenerator.qlgenerator> 
for com.apple.garageband.project
[DEBUG] Registering <QLGenerator /Library/QuickLook/GBQLGenerator.qlgenerator> 
for com.apple.garageband.template.magic
[DEBUG] Registering <QLGenerator /Library/QuickLook/GBQLGenerator.qlgenerator> 
for com.apple.garageband.template.magicmentor
[DEBUG] Registering <QLGenerator /Library/QuickLook/IPA QuickLook.qlgenerator> 
for com.apple.itunes.ipa
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.numbers.numbers
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.numbers.sffnumbers
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.pages.pages
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.pages.sffpages
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.keynote.key
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.keynote.key
[DEBUG] Registering <QLGenerator /Library/QuickLook/iWork.qlgenerator> for 
com.apple.iwork.keynote.sffkey
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLColorCode.qlgenerator> 
for public.source-code
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLColorCode.qlgenerator> 
for public.xml
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLColorCode.qlgenerator> 
for com.apple.property-list
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLColorCode.qlgenerator> 
for org.tug.tex
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLColorCode.qlgenerator> 
for public.plain-text
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLMarkdown.qlgenerator> for 
net.daringfireball.markdown
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLMarkdown.qlgenerator> for 
org.vim.markdown-file
[DEBUG] Registering <QLGenerator /Library/QuickLook/QLTorrent.qlgenerator> for 
org.bittorrent.torrent
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuarkXPress.qlgenerator> 
for com.quark.xpress.v6
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuarkXPress.qlgenerator> 
for com.quark.xpress.doc
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuarkXPress.qlgenerator> 
for com.quark.copydesk.doc
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuickLookCSV.qlgenerator> 
for public.tab-separated-values-text
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuickLookCSV.qlgenerator> 
for dyn.ah62d4rv4ge81k2pc
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuickLookCSV.qlgenerator> 
for public.comma-separated-values-text
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuickLookCSV.qlgenerator> 
for dyn.age80g650
[DEBUG] Registering <QLGenerator /Library/QuickLook/QuickLookCSV.qlgenerator> 
for dyn.ah62d4rv4ge80g650
[DEBUG] Registering <QLGenerator /Library/QuickLook/Suspicious 
Package.qlgenerator> for com.apple.installer-package
[DEBUG] Registering <QLGenerator /Library/QuickLook/Suspicious 
Package.qlgenerator> for com.apple.installer-meta-package
[DEBUG] Registering <QLGenerator /Library/QuickLook/Suspicious 
Package.qlgenerator> for com.mothersruin.installer-flat-package
[DEBUG] Registering <QLGenerator /Library/QuickLook/Suspicious 
Package.qlgenerator> for com.mothersruin.installer-bom-file
[DEBUG] Registering <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator> for 
com.google.code.sequel-pro.spf
[DEBUG] Registering <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator> for 
com.google.code.sequel-pro.sql
[DEBUG] Registering <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator> for 
com.google.code.sequel-pro.spfs
[DEBUG] Preview test for /Users/######/Desktop/test.sql. Content type UTI: 
com.google.code.sequel-pro.sql
[DEBUG] Previewing /Users/######/Desktop/test.sql. Content type UTI: 
com.google.code.sequel-pro.sql. Generator used: <QLGenerator 
/Applications/Sequel Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator>
[DEBUG] Loading <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator>
[ERROR] Preview request generator for <QLPreviewRequest 
/Users/######/Desktop/test.sql> raised '*** -[NSCFArray objectAtIndex:]: index 
(1) beyond bounds (1)'
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql - type: 
com.google.code.sequel-pro.sql - generator: <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator> (try #1)
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql. Content type UTI: 
com.google.code.sequel-pro.sql. Generator used: <QLGenerator 
/Applications/Sequel Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator>
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql did not produce anything
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql - type: 
com.google.code.sequel-pro.sql - generator: <QLGenerator /Applications/Sequel 
Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator> (try #1)
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql. Content type UTI: 
com.google.code.sequel-pro.sql. Generator used: <QLGenerator 
/Applications/Sequel Pro.app/Contents/Library/QuickLook/Sequel Pro.qlgenerator>
[DEBUG] Thumbnailing /Users/######/Desktop/test.sql did not produce anything

Original comment by chocolat...@gmail.com on 24 Aug 2011 at 11:03

GoogleCodeExporter commented 9 years ago
By the way, note that http://code.google.com/p/qlcolorcode/ also provides 
Quicklook previews for SQL files, but having Sequel installed negates it.

Original comment by chocolat...@gmail.com on 24 Aug 2011 at 11:08

GoogleCodeExporter commented 9 years ago
Weird… disregard my 2 messages. A reboot and it worked again. A few hours 
before rebooting, though, I did delete another Quicklook plugin 
<https://github.com/jaketmp/ePub-quicklook>.

Original comment by chocolat...@gmail.com on 24 Aug 2011 at 1:35

GoogleCodeExporter commented 9 years ago
I'm getting the same crash on quick look.  I'm using the latest stable release 
(3408) and OSX Lion.  This happens *every* time I try to QuickLook an SQL file. 
 :-(

Original comment by Nathan.R...@gmail.com on 28 Sep 2011 at 6:36

Attachments:

GoogleCodeExporter commented 9 years ago
Unable to recreate in the latest nightly code.

Original comment by stuart02 on 13 Aug 2012 at 7:43