cvs -z9 diff (in directory C:\frank\progetti\opensource\pgadmin2\pgschema\) cvs diff: Empty password used - try 'cvs login' with a real password ? pgSchema.vbw cvs server: Diffing . Index: Operators.cls =================================================================== RCS file: /disk1/cvsroot/pgschema/Operators.cls,v retrieving revision 1.23 diff -r1.23 Operators.cls 159a160 > 230a232,233 > Dim lOidOpLeft As Long > Dim lOidOpRigth As Long 264a268,282 > 'get oid type > With objServer.Databases(Database) > If .Namespaces(szNamespace).Types.Exists(LeftOperandType) Then > lOidOpLeft = .Namespaces(szNamespace).Types(LeftOperandType).Oid > ElseIf .Namespaces("pg_catalog").Types.Exists(LeftOperandType) Then > lOidOpLeft = .Namespaces("pg_catalog").Types(LeftOperandType).Oid > End If > > If .Namespaces(szNamespace).Types.Exists(RightOperandType) Then > lOidOpRigth = .Namespaces(szNamespace).Types(RightOperandType).Oid > ElseIf .Namespaces("pg_catalog").Types.Exists(RightOperandType) Then > lOidOpRigth = .Namespaces("pg_catalog").Types(RightOperandType).Oid > End If > End With > 266,270c284,285 < If objVersion.VersionNum >= 7.3 Then < szSQL = SQL_GET_OPERATORS & " AND oprname = '" & dbSZ(Name) & "' AND oprleft = '" & LeftOperandType & "' AND oprright = '" & RightOperandType & "' AND oprnamespace = " & dNamespaceOID & "::oid" < Else < szSQL = SQL_GET_OPERATORS & " AND oprname = '" & dbSZ(Name) & "' AND oprleft = '" & LeftOperandType & "' AND oprright = '" & RightOperandType & "'" < End If --- > szSQL = SQL_GET_OPERATORS & " WHERE oprname = '" & dbSZ(Name) & "' AND oprleft = " & lOidOpLeft & "::oid AND oprright = " & lOidOpRigth & "::oid" > If objVersion.VersionNum >= 7.3 Then szSQL = szSQL & " AND oprnamespace = " & dNamespaceOID & "::oid" Index: pgSchema.vbp =================================================================== RCS file: /disk1/cvsroot/pgschema/pgSchema.vbp,v retrieving revision 1.152 diff -r1.152 pgSchema.vbp 2,3c2,3 < Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation < Reference=*\G{00000205-0000-0010-8000-00AA006D2EA4}#2.5#0#..\..\..\..\..\Program Files\Common Files\system\ado\msado25.tlb#Microsoft ActiveX Data Objects 2.0 Library --- > Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\System32\Stdole2.tlb#OLE Automation > Reference=*\G{00000205-0000-0010-8000-00AA006D2EA4}#2.5#0#..\..\..\..\..\Programmi\File comuni\system\ado\msado25.tlb#Microsoft ActiveX Data Objects 2.0 Library 72c72 < RevisionVer=63 --- > RevisionVer=65 cvs server: Diffing test ***** CVS exited normally with code 1 *****