diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-27 00:40:40 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-27 00:40:40 +0000 |
commit | 5058641e18efad9c8ec1b603f132bfcc1e44c1d9 (patch) | |
tree | 442339ebd4a81d3dc5f74083527d6a65daf8289e /databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c | |
parent | Correct slight mis-merge. Should not affect anything. (diff) |
[Maintainer Update] /databases/grass update to 6.0.1
- removed all patches
- added new patches to get rid of matherr references
PR: ports/89769
Submitted by: Laurent Courty <lrntct@gmail.com>
Diffstat (limited to 'databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c')
-rw-r--r-- | databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c b/databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c deleted file mode 100644 index 928128353a26..000000000000 --- a/databases/grass/files/patch-src.garden-grass.postgresql-g.column.pg-main.c +++ /dev/null @@ -1,40 +0,0 @@ ---- src.garden/grass.postgresql/g.column.pg/main.c.orig Sun Jul 11 17:18:12 2004 -+++ src.garden/grass.postgresql/g.column.pg/main.c Sun Jul 11 17:19:04 2004 -@@ -80,24 +80,24 @@ - /* Postgres 6.x style */ - - if (flag->answer) { -- sprintf(SQL, "SELECT a.attname as ColumnName, t.typname as Type, -- a.attlen as Length, -- a.atttypmod as \"Mod_Length\" -- FROM pg_class c, pg_attribute a, pg_type t -- WHERE c.relname = '%s' -- and a.attnum > 0 -- and a.attrelid = c.oid -- and a.atttypid = t.oid -+ sprintf(SQL, "SELECT a.attname as ColumnName, t.typname as Type,\ -+ a.attlen as Length,\ -+ a.atttypmod as \"Mod_Length\"\ -+ FROM pg_class c, pg_attribute a, pg_type t\ -+ WHERE c.relname = '%s'\ -+ and a.attnum > 0\ -+ and a.attrelid = c.oid\ -+ and a.atttypid = t.oid\ - order by attnum", tbl->answer ); - - } - else { - /* no column descriptions */ -- sprintf(SQL, "SELECT a.attname as ColumnName -- FROM pg_class c, pg_attribute a -- WHERE c.relname = '%s' -- and a.attnum > 0 -- and a.attrelid = c.oid -+ sprintf(SQL, "SELECT a.attname as ColumnName\ -+ FROM pg_class c, pg_attribute a\ -+ WHERE c.relname = '%s'\ -+ and a.attnum > 0\ -+ and a.attrelid = c.oid\ - order by attnum", tbl->answer ); - } - |