Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 244731 Details for
Bug 360501
Error message reported by new perl-DBD-MySQL packages
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
The correct testing script output provided by the old perl-DBD-MySQL packages
old_testing_script_output.txt (text/plain), 6.16 KB, created by
Jan Lieskovsky
on 2007-10-31 16:26:38 UTC
(
hide
)
Description:
The correct testing script output provided by the old perl-DBD-MySQL packages
Filename:
MIME Type:
Creator:
Jan Lieskovsky
Created:
2007-10-31 16:26:38 UTC
Size:
6.16 KB
patch
obsolete
>Opening the connection to the database... >Successfully connected to the database: test >Creating tables: user, architecture, release, package and bug... >Performing SQL query: > CREATE TABLE user(id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(20) CHARACTER SET utf8, surname VARCHAR(20) CHARACTER SET utf8, role ENUM('reviewer','corrector','admin') CHARACTER SET utf8, PRIMARY KEY (id), FULLTEXT (surname)) [ OK ] >Performing SQL query: > CREATE TABLE architecture(id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(10) CHARACTER SET utf8, description VARCHAR(20) CHARACTER SET utf8, PRIMARY KEY (id), FULLTEXT (name)) [ OK ] >Performing SQL query: > CREATE TABLE package(id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(30) CHARACTER SET utf8, description VARCHAR(300) CHARACTER SET utf8, version VARCHAR(30) CHARACTER SET utf8, PRIMARY KEY (id), user_fk SMALLINT UNSIGNED NOT NULL REFERENCES user(id), arch_fk SMALLINT UNSIGNED NOT NULL REFERENCES architecture(id), rel_fk SMALLINT UNSIGNED NOT NULL REFERENCES release(id), FULLTEXT (description)) [ OK ] >Performing SQL query: > CREATE TABLE release(id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, name ENUM('RHEL-2.1','RHEL-3','RHEL-4','RHEL-5'), PRIMARY KEY (id)); [ OK ] >Performing SQL query: > CREATE TABLE bug(id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, bname VARCHAR(30) CHARACTER SET utf8, bdescription VARCHAR(300) CHARACTER SET utf8, PRIMARY KEY (id), pkg_fk SMALLINT UNSIGNED NOT NULL REFERENCES package(id), FULLTEXT (bname,bdescription)) [ OK ] >Tables: user, architecture, package, release and bug successfully created. >Filling table user... >Performing SQL query: INSERT INTO user VALUES (NULL,"Elena","Fuente",'reviewer'); [ OK ] >Performing SQL query: INSERT INTO user VALUES (NULL,"John","de Ripper",'admin'); [ OK ] >Performing SQL query: INSERT INTO user VALUES (NULL,"Pedro","Gonzales",'corrector'); [ OK ] >Performing SQL query: INSERT INTO user VALUES (NULL,"Miguel","De Cervantes",'reviewer'); [ OK ] >Performing SQL query: INSERT INTO user VALUES (NULL,"Gabriel","Garcia Marquez",'admin'); [ OK ] >Filling table architecture... >Performing SQL query: INSERT INTO architecture VALUES (NULL,'i386','Intel 386 arch'); [ OK ] >Performing SQL query: INSERT INTO architecture VALUES (NULL,'ia64','64 bit Intel arch'); [ OK ] >Performing SQL query: INSERT INTO architecture VALUES (NULL,'s390','IBM 31 bit arch'); [ OK ] >Performing SQL query: INSERT INTO architecture VALUES (NULL,'s390x','IBM 64 bit arch'); [ OK ] >Performing SQL query: INSERT INTO architecture VALUES (NULL,'ppc','SPARC arch'); [ OK ] >Performing SQL query: INSERT INTO architecture VALUES (NULL,'x86_64','64 bit arch'); [ OK ] >Filling table release... >Performing SQL query: INSERT INTO release VALUES (NULL,'RHEL-2.1'); [ OK ] >Performing SQL query: INSERT INTO release VALUES (NULL,'RHEL-3'); [ OK ] >Performing SQL query: INSERT INTO release VALUES (NULL,'RHEL-4'); [ OK ] >Performing SQL query: INSERT INTO release VALUES (NULL,'RHEL-5'); [ OK ] >Filling table package... >Performing SQL query: INSERT INTO package VALUES (NULL,'httpd',"The Apache web server",'2.2.3-7.el5.i386',1,1,1); [ OK ] >Performing SQL query: INSERT INTO package VALUES (NULL,'openssl',"The openssl suite",'0.9.8b-8.3.el5_0.2.i686',2,2,2); [ OK ] >Performing SQL query: INSERT INTO package VALUES (NULL,'cyrus-imapd','The cyrus MTA','2.3.7-1.1.el5.i386',1,2,1); [ OK ] >Performing SQL query: INSERT INTO package VALUES (NULL,'pcre','Perl compatible regex library','6.6-1.1.i386',2,1,2); [ OK ] >Performing SQL query: INSERT INTO package VALUES (NULL,'openldap','The LDAP service client and server','2.3.27-5.i386',3,3,3); [ OK ] >Filling table bug... >Performing SQL query: INSERT INTO bug VALUES (NULL,'BZ#123456','http crashes',1); [ OK ] >Performing SQL query: INSERT INTO bug VALUES (NULL,'BZ#654321','openssl invalid signature generation',2); [ OK ] >Performing SQL query: INSERT INTO bug VALUES (NULL,'BZ#214365','cyrus-imapd inproper user quota handling',3); [ OK ] >Performing SQL query: INSERT INTO bug VALUES (NULL,'BZ#563421','The pcre library crashes when supplying inproper regexes',4); [ OK ] >Performing SQL query: INSERT INTO bug VALUES (NULL,'BZ#162534','The ldapsearch hangs when /var/lib/ldap/db database corruption detected',5); [ OK ] >Selecting data from user table... >Performing SQL query: SELECT id, name, surname FROM user WHERE role LIKE 'reviewer' [ OK ] >Item #1: 1,Elena,Fuente >Item #2: 4,Miguel,De Cervantes >Selecting data from architecture table... >Performing SQL query: SELECT * FROM architecture WHERE description LIKE '%bit%' [ OK ] >Item #1: 2,ia64,64 bit Intel arch >Item #2: 3,s390,IBM 31 bit arch >Item #3: 4,s390x,IBM 64 bit arch >Item #4: 6,x86_64,64 bit arch >Performing SQL query: SELECT * FROM architecture WHERE name LIKE '%s390%' [ OK ] >Item #1: 3,s390,IBM 31 bit arch >Item #2: 4,s390x,IBM 64 bit arch >Selecting data from release table... >Performing SQL query: SELECT * FROM release WHERE name LIKE '%RHEL%' [ OK ] >Item #1: 1,RHEL-2.1 >Item #2: 2,RHEL-3 >Item #3: 3,RHEL-4 >Item #4: 4,RHEL-5 >Selecting data from package table... >Performing SQL query: SELECT * FROM package WHERE arch_fk = '1' [ OK ] >Item #1: 1,httpd,The Apache web server,2.2.3-7.el5.i386,1,1,1 >Item #2: 4,pcre,Perl compatible regex library,6.6-1.1.i386,2,1,2 >Selecting data from bug table... >Performing SQL query: SELECT * FROM bug WHERE bname LIKE '%BZ#%' [ OK ] >Item #1: 1,BZ#123456,http crashes,1 >Item #2: 2,BZ#654321,openssl invalid signature generation,2 >Item #3: 3,BZ#214365,cyrus-imapd inproper user quota handling,3 >Item #4: 4,BZ#563421,The pcre library crashes when supplying inproper regexes,4 >Item #5: 5,BZ#162534,The ldapsearch hangs when /var/lib/ldap/db database corruption detected,5 >Dropping tables user, architecture, release, package and bug... >Performing SQL query: DROP TABLE bug [ OK ] >Performing SQL query: DROP TABLE release [ OK ] >Performing SQL query: DROP TABLE package [ OK ] >Performing SQL query: DROP TABLE architecture [ OK ] >Performing SQL query: DROP TABLE user [ OK ] >Tables: user, architecture, package, release and bug successfully dropped. >Closing the connection to the database...
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 360501
:
244671
|
244681
|
244691
|
244701
|
244711
|
244721
| 244731