From: Dan Langille Date: Sat, 17 Jul 2004 15:51:34 +0000 (+0000) Subject: Replace INTEGER UNSIGNED and BIGINT UNSIGNED X-Git-Tag: Release-1.35.1~55 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1595437f360de038c4af58bb22ff6196e47aefc0;p=bacula%2Frescue Replace INTEGER UNSIGNED and BIGINT UNSIGNED with BIGINT. UNSIGNED is not supported by all databases. However, BIGINT works on SQLite, MySQL, and PostgreSQL Replace a GROUP BY [which fails on PostgreSQL because it's not standard SQL] with a DISTINCT, which is what we are really trying to do anyway. ---