- Added new test

- Changed some comments


git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@263 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf
2010-10-26 13:54:34 +00:00
parent 99692f7d70
commit 6e16a0d841
4 changed files with 20 additions and 4 deletions

View File

@@ -216,7 +216,10 @@ def replacements(query):
return query
def exec_query(command):
'''This function executes a query and prints the result on the screen'''
'''This function executes a query and prints the result on the screen
if the command terminates with ";" the result will not be printed
'''
#If it terminates with ; doesn't print the result
if command.endswith(';'):