You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rivet-dev@tcl.apache.org by mx...@apache.org on 2010/07/12 19:13:58 UTC

svn commit: r963352 - in /tcl/rivet/trunk: ChangeLog rivet/packages/dio/dio_Postgresql.tcl rivet/packages/session/session-create.sql

Author: mxmanghi
Date: Mon Jul 12 17:13:57 2010
New Revision: 963352

URL: http://svn.apache.org/viewvc?rev=963352&view=rev
Log:
    * rivet/packages/calendar/calendar.tcl: new comments added. Fixed misspelled -errorinfo option
    in a return statement.
    * rivet/packages/session/session-create.sql: columns 'key' and 'package' are renamed as 'key_" and
    'package_'.
    * rivet/packages/dio/dio_Postgresql.tcl: fixed typo in variable name


Modified:
    tcl/rivet/trunk/ChangeLog
    tcl/rivet/trunk/rivet/packages/dio/dio_Postgresql.tcl
    tcl/rivet/trunk/rivet/packages/session/session-create.sql

Modified: tcl/rivet/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/ChangeLog?rev=963352&r1=963351&r2=963352&view=diff
==============================================================================
--- tcl/rivet/trunk/ChangeLog (original)
+++ tcl/rivet/trunk/ChangeLog Mon Jul 12 17:13:57 2010
@@ -1,6 +1,9 @@
 2010-07-12 Massimo Manghi <mx...@apache.org>
     * rivet/packages/calendar/calendar.tcl: new comments added. Fixed misspelled -errorinfo option
     in a return statement.
+    * rivet/packages/session/session-create.sql: columns 'key' and 'package' are renamed as 'key_" and
+    'package_'.
+    * rivet/packages/dio/dio_Postgresql.tcl: fixed typo in variable name 
 
 2010-07-07 Massimo Manghi <mx...@apache.org>
     * INSTALL: improved installation instructions before merging trunk into branches/2_0

Modified: tcl/rivet/trunk/rivet/packages/dio/dio_Postgresql.tcl
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/rivet/packages/dio/dio_Postgresql.tcl?rev=963352&r1=963351&r2=963352&view=diff
==============================================================================
--- tcl/rivet/trunk/rivet/packages/dio/dio_Postgresql.tcl (original)
+++ tcl/rivet/trunk/rivet/packages/dio/dio_Postgresql.tcl Mon Jul 12 17:13:57 2010
@@ -138,7 +138,7 @@ namespace eval DIO {
 	    # did, put that in in place of numrows, hiding a postgresql
 	    # idiosyncracy from DIO
 	    if {$numrows == 0} {
-	        set cmdrows [pg_result $resultId -cmdTuples]
+	        set cmdrows [pg_result $resultid -cmdTuples]
 		if {$cmdrows != ""} {
 		    set numrows $cmdrows
 		}

Modified: tcl/rivet/trunk/rivet/packages/session/session-create.sql
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/rivet/packages/session/session-create.sql?rev=963352&r1=963351&r2=963352&view=diff
==============================================================================
--- tcl/rivet/trunk/rivet/packages/session/session-create.sql (original)
+++ tcl/rivet/trunk/rivet/packages/session/session-create.sql Mon Jul 12 17:13:57 2010
@@ -16,8 +16,8 @@ create table rivet_session(
 
 create table rivet_session_cache(
     session_id		varchar REFERENCES rivet_session(session_id) ON DELETE CASCADE,
-    package		varchar,
-    key                 varchar,
+    package_		varchar,
+    key_                varchar,
     data                varchar,
 
     UNIQUE( session_id, package, key )



---------------------------------------------------------------------
To unsubscribe, e-mail: rivet-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: rivet-cvs-help@tcl.apache.org