diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
commit | ca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch) | |
tree | ec04cc15b867bc21eedca904cea9af0254531a11 /docs/databases/postgres.txt | |
parent | a22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff) |
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook
* Use only css to hide our menu bar when printing
Diffstat (limited to 'docs/databases/postgres.txt')
-rw-r--r-- | docs/databases/postgres.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/databases/postgres.txt b/docs/databases/postgres.txt index cec51861..6b266a6a 100644 --- a/docs/databases/postgres.txt +++ b/docs/databases/postgres.txt @@ -92,6 +92,18 @@ in maintenance/tables.sql itself, as it is very strict in the format it expects things to be in. :) +== MySQL differences == + +The major differences between MySQL and Postgres are represented as +methods in the Database class. For example, implicitGroupby() is +true for MySQL and false for Postgres. This means that in those +places where the code does not add all the non-aggregate items +from the SELECT clause to the GROUP BY, we can add them in, but in +a conditional manner with the above method, as simply adding them +all in to the main query may cause performance problems with +MySQL. + + == Getting help == In addition to the normal venues (MediaWiki mailing lists |