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 ? test/pgSchema-Test.vbw cvs server: Diffing . Index: Functions.cls =================================================================== RCS file: /disk1/cvsroot/pgschema/Functions.cls,v retrieving revision 1.37 diff -r1.37 Functions.cls 168c168 < objNewMember.OID = dOID --- > objNewMember.Oid = dOID 219c219 < Public Function Add(Name As String, Arguments As String, Returns As String, Source As String, Language As String, Cachable As Boolean, Strict As Boolean, Optional Comment As String, Optional Volatility As String, Optional SecurityDefiner As Boolean) As pgFunction --- > Public Function Add(Name As String, Arguments As String, Returns As String, Source As String, Language As String, Cachable As Boolean, Strict As Boolean, Optional Comment As String, Optional Volatility As String, Optional SecurityDefiner As Boolean, Optional RetSet As Boolean) As pgFunction 222c222 < objServer.iLogEvent "Entering " & App.Title & ":Functions.Add(" & QUOTE & Name & QUOTE & ", " & QUOTE & Arguments & QUOTE & ", " & QUOTE & Returns & QUOTE & ", " & QUOTE & Source & QUOTE & ", " & QUOTE & Language & QUOTE & ", " & Cachable & ", " & Strict & ", " & QUOTE & Comment & QUOTE & ", " & QUOTE & Volatility & QUOTE & ", " & SecurityDefiner & ")", etFullDebug --- > objServer.iLogEvent "Entering " & App.Title & ":Functions.Add(" & QUOTE & Name & QUOTE & ", " & QUOTE & Arguments & QUOTE & ", " & QUOTE & Returns & QUOTE & ", " & QUOTE & Source & QUOTE & ", " & QUOTE & Language & QUOTE & ", " & Cachable & ", " & Strict & ", " & QUOTE & Comment & QUOTE & ", " & QUOTE & Volatility & QUOTE & ", " & SecurityDefiner & "," & RetSet & ")", etFullDebug 238c238,243 < szSQL = szSQL & " RETURNS " & Returns --- > > szSQL = szSQL & " RETURNS " > If objVersion.VersionNum >= 7.3 Then > If RetSet Then szSQL = szSQL & " SETOF " > End If > szSQL = szSQL & Returns 283c288 < If fFunc.OID = rs.Fields("oid") Then --- > If fFunc.Oid = rs.Fields("oid") Then Index: pgFunction.cls =================================================================== RCS file: /disk1/cvsroot/pgschema/pgFunction.cls,v retrieving revision 1.34 diff -r1.34 pgFunction.cls 691c691,695 < szSQL = szSQL & " RETURNS " & szReturns --- > szSQL = szSQL & " RETURNS " > If objVersion.VersionNum >= 7.3 Then > If bRetSet Then szSQL = szSQL & " SETOF " > End If > szSQL = szSQL & szReturns Index: pgSchema.vbp =================================================================== RCS file: /disk1/cvsroot/pgschema/pgSchema.vbp,v retrieving revision 1.142 diff -r1.142 pgSchema.vbp 2,3c2,3 < Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINDOWS\System32\stdole2.tlb#OLE Automation < Reference=*\G{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\Program Files\Common Files\system\ado\msado20.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{00000200-0000-0010-8000-00AA006D2EA4}#2.0#0#..\..\..\..\..\Programmi\File comuni\system\ado\msado20.tlb#Microsoft ActiveX Data Objects 2.0 Library 72c72 < RevisionVer=36 --- > RevisionVer=44 cvs server: Diffing test ***** CVS exited normally with code 1 *****