Update of /cvsroot/monetdb/sql/src/test/Dependencies/Tests
In directory 
sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6095/src/test/Dependencies/Tests

Added Files:
        Dependencies.SQL.py 
Removed Files:
        Dependencies.SQL.bat Dependencies.SQL.sh 
Log Message:
propagated changes of Wednesday Oct 10 2007 - Friday Oct 12 2007
from the SQL_2-20 branch to the development trunk


--- Dependencies.SQL.bat DELETED ---

--- NEW FILE: Dependencies.SQL.py ---
import os, sys


def main():
        clcmd = str(os.getenv('SQL_CLIENT'))
        clcmd1 = str(os.getenv('SQL_CLIENT')) + "-umonet_test -Ppass_test"
        sys.stdout.write('Dependencies between User and Schema\n')
        sys.stdout.flush()
        clt = os.popen(clcmd + "<%s" % ('%s/../dependency_owner_schema_1.sql' % 
os.getenv('RELSRCDIR')), 'w')
        sys.stdout.write('done\n')
        clt.close() 
        clt1 = os.popen(clcmd1 + "<%s" % ('%s/../dependency_owner_schema_2.sql' 
% os.getenv('RELSRCDIR')), 'w')
        sys.stdout.write('done\n')
        clt1.close() 
        sys.stdout.write('Dependencies between database objects\n')
        sys.stdout.flush()
        clt = os.popen(clcmd + "<%s" % ('%s/../dependency_DBobjects.sql' % 
os.getenv('RELSRCDIR')), 'w')
        sys.stdout.write('done\n')
        clt.close() 
        sys.stdout.write('Dependencies between functions with same name\n')
        sys.stdout.flush()
        clt = os.popen(clcmd + "<%s" % ('%s/../dependency_functions.sql' % 
os.getenv('RELSRCDIR')), 'w')
        sys.stdout.write('done\n')
        clt.close() 
        sys.stdout.write('Cleanup\n')
        sys.stdout.flush()
        clt = os.popen(clcmd + "<%s" % ('%s/../dependency_owner_schema_3.sql' % 
os.getenv('RELSRCDIR')), 'w')
        sys.stdout.write('done\n')
        clt.close() 

main()

--- Dependencies.SQL.sh DELETED ---


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to