From c426361cbee0b59b24771a2e2457e202ff0620fb Mon Sep 17 00:00:00 2001 From: mark_o Date: Tue, 5 Feb 2008 15:14:40 +0000 Subject: [PATCH] =?UTF-8?q?[=201869844=20]=20CLIENT=5FID=20not=20ReadOnly?= =?UTF-8?q?=20any=20more=20=3F!=3F=20Info=20from=20Tobi42=20Tobias=20Sch?= =?UTF-8?q?=C3=B6neberg)=20taken=20from=20Buildserver.=20Minor=20change=20?= =?UTF-8?q?for=20Postgres=20because=20IN=20types=20character=20and=20integ?= =?UTF-8?q?er=20cannot=20be=20matched.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Please review for Oracle migration Script. --- migration/331b-trunk/postgresql/087_BF1869844.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/migration/331b-trunk/postgresql/087_BF1869844.sql b/migration/331b-trunk/postgresql/087_BF1869844.sql index 2dc47ebcc8..89b2ff3b74 100644 --- a/migration/331b-trunk/postgresql/087_BF1869844.sql +++ b/migration/331b-trunk/postgresql/087_BF1869844.sql @@ -5,5 +5,6 @@ SELECT ad_column_id FROM AD_TABLE t, AD_COLUMN c WHERE t.ad_table_id = c.ad_table_id AND columnname = 'AD_Client_ID' - AND t.accesslevel IN (1, 2, 3) - AND c.ad_val_rule_id IS NULL); \ No newline at end of file + AND t.accesslevel IN ('1', '2', '3') + AND c.ad_val_rule_id IS NULL) +;