From: <kr_...@us...> - 2004-12-15 14:40:04
|
Update of /cvsroot/htoolkit/HSQL/src/HSQL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5700/src/HSQL Modified Files: PostgreSQL.hsc Log Message: Add Filter for dropped columns in describe Index: PostgreSQL.hsc =================================================================== RCS file: /cvsroot/htoolkit/HSQL/src/HSQL/PostgreSQL.hsc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PostgreSQL.hsc 10 Feb 2004 11:30:52 -0000 1.9 --- PostgreSQL.hsc 15 Dec 2004 14:39:56 -0000 1.10 *************** *** 192,196 **** ("select attname, atttypid, atttypmod, attnotnull " ++ "from pg_attribute as cols join pg_class as ts on cols.attrelid=ts.oid " ++ ! "where cols.attnum > 0 and ts.relname='"++table++"'") collectRows getColumnInfo stmt where --- 192,198 ---- ("select attname, atttypid, atttypmod, attnotnull " ++ "from pg_attribute as cols join pg_class as ts on cols.attrelid=ts.oid " ++ ! "where cols.attnum > 0 and ts.relname="++toSqlValue table++ ! " and cols.attisdropped = False ") ! collectRows getColumnInfo stmt where |