summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB.pm
AgeCommit message (Collapse)AuthorFilesLines
2011-12-26Bug 683644: Foreign keys aren't renamed correctly when DB tables are renamedFrédéric Buclin1-1/+13
r=wicked a=LpSolit
2011-12-05Bug 550299: User fields are left blank in buglists and whines when local ↵Frédéric Buclin1-2/+5
user accounts are used (i.e. they have no @company.com suffix) r/a=mkanat
2011-08-29Bug 637648 - Rename the "tags" table to "tag"Stephanie Daugherty1-3/+11
r=LpSolit, a=LpSolit
2011-08-17Bug 662070: Use say() instead of print() where appropriateFrédéric Buclin1-8/+8
r=glob a=LpSolit
2011-03-01Bug 634144: Make possible_duplicates work on PostgreSQLSam Morris1-3/+11
r=mkanat, a=mkanat
2011-02-14Bug 603127: Make checksetup.pl require DBD::Pg 2.17.2 when using Pg 9.0 orMax Kanat-Alexander1-20/+33
later. r=dkl, a=mkanat
2010-11-03The changes to bz_create_database done by the SQLite patch broke theMax Kanat-Alexander1-1/+1
creation of databases on other systems. This restores the original behavior while still retaining the correct error-throwing behavior for systems that can't create a SQLite database. https://bugzilla.mozilla.org/show_bug.cgi?id=337776
2010-10-27Bug 337776: Basic SQLite Support for BugzillaMax Kanat-Alexander1-5/+9
r=LpSolit, a=mkanat
2010-10-16Minor improvement for bug 451735Frédéric Buclin1-2/+0
r=mkanat
2010-10-15Bug 451735 part2: fix bz_drop_index() so that it first drops related FKs ↵Frédéric Buclin1-0/+6
before deleting the index itself r/a=mkanat
2010-10-07Bug 602165: Change sql_interval to sql_date_math, in preparation forMax Kanat-Alexander1-6/+19
MS-SQL and SQLite support.
2010-09-19Bug 586244: Make mod_headers and mod_expires optionalMax Kanat-Alexander1-5/+8
r=glob, a=mkanat
2010-08-02Bug 578494: We can't use "shellwords" to split words for sql_fulltext on Pg,Max Kanat-Alexander1-6/+17
because it doesn't work with unbalanced single quotes. So we just do a hack to make Quicksearch work right, for Pg. r=LpSolit, a=mkanat
2010-08-02Bug 583645: Make $dbh->quote always detaint its output, even on DBDs thatMax Kanat-Alexander1-0/+11
don't normally detaint output from $dbh->quote. r=LpSolit, a=LpSolit
2010-07-23Bug 578494: When doing a QuickSearch on a phrase, pass the phrase quotedMax Kanat-Alexander1-2/+4
to the fulltext engine, so that it knows it's a phrase. r=LpSolit, a=mkanat
2010-07-18Bug 579568: Search.pm: Improve the implementation and performance ofMax Kanat-Alexander1-0/+15
substring and "words" searches, improve the formatting of generated SQL, and use real subselects instead of performing the subselect and using its results in an IN. r=mkanat, a=mkanat (module owner)
2010-07-15Bug 578739: Instead of removing REFERENCES from _bz_real_schema and thenMax Kanat-Alexander1-36/+84
populating FKs from _bz_schema at the end of checksetup, store REFERENCES in _bz_real_schema with a special "created => 0" key that tells us that we still need to create the FK. r=mkanat, a=mkanat (module owner)
2010-07-14Bug 578587: Make checksetup be way quieter when creating a new installMax Kanat-Alexander1-16/+40
r=mkanat, a=mkanat (module owner)
2010-07-09Bug 577577: Make bz_drop_fk be tolerant of SQL failureMax Kanat-Alexander1-2/+8
r=mkanat, a=mkanat (module owner)
2010-07-08Bug 577520: Make the "Adding new table..." message not appear duringMax Kanat-Alexander1-1/+2
xt/search.t r=mkanat, a=mkanat (module owner)
2010-07-06Bug 486292: Change the default workflow to UNCONFIRMED, CONFIRMED,Max Kanat-Alexander1-2/+2
IN_PROGRESS, RESOLVED, VERIFIED. r=LpSolit, a=mkanat
2010-06-22Bug 22353: Automatic duplicate bug detection on enter_bug.cgiMax Kanat-Alexander1-0/+5
r=glob, a=mkanat
2010-06-18Bug 556422: Move the existing bug-moving functionality into an extensionMax Kanat-Alexander1-2/+1
called OldBugMove. r=dkl, a=mkanat
2010-06-01Bug 569312: Speed up the adding of many FKs to the same table for MySQLMax Kanat-Alexander1-14/+33
and PostgreSQL, by adding them all in one ALTER statement r=mkanat, a=mkanat (module owner)
2010-04-27Bug 561322: Make Bugzilla::DB::_connect and related functions take theirMax Kanat-Alexander1-13/+21
parameters as a hashref, to improve the API and to avoid exposing the database password on error. r=mkanat, a=mkanat (module owner)
2010-04-20Bug 560284: Make all errors that checksetup.pl throws be redMax Kanat-Alexander1-14/+8
r=mkanat, a=mkanat (module owner)
2010-03-16Bug 545770: Make contrib/merge-users.pl figure out what columns to mergeMax Kanat-Alexander1-5/+14
by tracing FKs instead of having a fixed list. r=LpSolit, a=LpSolit
2009-12-31Bug 520318: Add remove_from_db to Bugzilla:Group and use it to delete groups ↵mkanat%bugzilla.org1-0/+8
in editgroups.cgi Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=LpSolit
2009-11-18Bug 527489: Calls to bz_alter_column were dropping the REFERENCES item from ↵mkanat%bugzilla.org1-0/+7
the stored Schema object. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=ghendricks, a=mkanat
2009-11-10Bug 527505: Make 001compile.t use Bugzilla->feature to determine which ↵mkanat%bugzilla.org1-3/+2
modules to compile Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
2009-10-24Bug 519584: Implement a framework for migrating from other bug-trackers, and ↵mkanat%bugzilla.org1-0/+10
start with a GNATS importer. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
2009-09-30Bug 488931: Change the default priority values to be human-readable words ↵mkanat%bugzilla.org1-1/+1
instead of P1, P2, etc. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
2009-08-17Bug 509497: Implement sql_group_concat for all databasesmkanat%bugzilla.org1-1/+2
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat Patch by Xiaoou Wu <xiaoou.wu@oracle.com> r=mkanat, a=mkanat
2009-08-06Bug 508181: UTF-8 table conversion was failing when there were FKs on the ↵mkanat%bugzilla.org1-0/+22
column or on related columns Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
2009-07-07Bug 491467: Make Search.pm and buglist.cgi consistently take column ids for ↵mkanat%bugzilla.org1-1/+0
the "fields" and "order" arguments, to prevent problems with using SQL fragments in the order and columnlist. Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=wicked, a=mkanat
2009-02-20Bug 477459: buglist.cgi crashes for logged out users if the "Reporter" ↵lpsolit%gmail.com1-1/+1
column is displayed - Patches by Frédéric Buclin <LpSolit@gmail.com> and Xiaoou <xiaoou.wu@oracle.com> r/a=mkanat
2009-01-29Bug 219021: Only display email addresses to logged-in usersmkanat%bugzilla.org1-0/+25
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
2008-12-03Bug 463688: editusers.cgi no longer lets you search for users using regular ↵lpsolit%gmail.com1-7/+6
expressions - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat r=xiaoou a=LpSolit
2008-11-06Oh, actually, Xiaoou was right about where the constraint is supposed to go.mkanat%bugzilla.org1-2/+2
2008-11-06Bug 460421: [Oracle] Adding custom fields with type FIELD_TYPE_MULTI_SELECT ↵mkanat%bugzilla.org1-1/+1
requires a unique constraint on the "value" column Patch By Xiaoou Wu <xiaoou.wu@oracle.com> r=mkanat, a=mkanat
2008-10-25Bug 291433: Ability to have custom fields whose visibility depends on the ↵mkanat%bugzilla.org1-5/+9
values of other fields Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bbaetz, a=mkanat
2008-10-17Bug 455857: [Oracle] 'Find a Specific Bug' doesn't work - Patch by Xiaoou ↵lpsolit%gmail.com1-0/+1
<xiaoou.wu@oracle.com> r/a=mkanat
2008-08-01Bug 440188: buglist.cgi should display EXPLAIN output when &debug=1mkanat%bugzilla.org1-1/+1
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
2008-07-01Bug 442863: ON DELETE CASCADE Foreign Keys should automatically delete ↵mkanat%bugzilla.org1-20/+39
invalid values during checksetup Patch By Max Kanat-Alexander (module owner) a=mkanat
2008-06-30Bug 327344: Create sql_iposition and use it in Search.pm to fix the fact ↵mkanat%bugzilla.org1-1/+15
that searching for Turkish characters didn't do case-insensitivity properly. Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
2008-06-29Bug 429804: Add Foreign Keys to Multiselect fieldsmkanat%bugzilla.org1-4/+10
Patch By Alex Eiser <aeiser@arc.nasa.gov> r=mkanat, a=mkanat
2008-06-20Bug 157092 – Implement a checking mechanism for invalid regexpdkl%redhat.com1-0/+9
Patch by David Lawrence <dkl@redhat.com> - r/a=mkanat
2008-04-20Bug 429847: config.cgi should include additional information about custom ↵lpsolit%gmail.com1-40/+0
fields - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
2008-03-25Bug 419979: Bugzilla::DB::bz_add_field_table directly modifies the ↵mkanat%bugzilla.org1-8/+13
FIELD_TABLE_SCHEMA constant Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
2008-02-06Bug 349369: Allow unused custom fields to be deleted from editfields.cgi - ↵lpsolit%gmail.com1-0/+7
Patch by Alex Eiser <aeiser@arc.nasa.gov> r/a=LpSolit