Changeset: 443bf66b1cfb for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/443bf66b1cfb
Modified Files:
        sql/test/file_loader/Tests/file_loader_function.test
        sql/test/file_loader/Tests/file_loader_string.test
Branch: default
Log Message:

Removed the end of query ; characters


diffs (49 lines):

diff --git a/sql/test/file_loader/Tests/file_loader_function.test 
b/sql/test/file_loader/Tests/file_loader_function.test
--- a/sql/test/file_loader/Tests/file_loader_function.test
+++ b/sql/test/file_loader/Tests/file_loader_function.test
@@ -1,16 +1,16 @@
 query TT rowsort
-select name, mod from sys.functions where mod is null or mod = '';
+select name, mod from sys.functions where mod is null or mod = ''
 ----
 
 statement error 42000!Table expression without table name
-select * from file_loader('');
+select * from file_loader('')
 
 statement error 42000!Table expression without table name
-select * from file_loader('filenotfound');
+select * from file_loader('filenotfound')
 
 statement error server crash
-select * from sys.file_loader('');
+select * from sys.file_loader('')
 
 statement error server crash
-select * from sys.file_loader('filenotfound');
+select * from sys.file_loader('filenotfound')
 
diff --git a/sql/test/file_loader/Tests/file_loader_string.test 
b/sql/test/file_loader/Tests/file_loader_string.test
--- a/sql/test/file_loader/Tests/file_loader_string.test
+++ b/sql/test/file_loader/Tests/file_loader_string.test
@@ -1,15 +1,15 @@
 statement error 42000!Table expression without table name
-select * from '';
+select * from ''
 
 statement error 42000!Table expression without table name
-select * from 'FileNotFound';
+select * from 'FileNotFound'
 
 statement error 42000!Table expression without table name
-select * from '/tmp/FileNotFound';
+select * from '/tmp/FileNotFound'
 
 statement error 42000!Table expression without table name
-select * from '/tmp/FileNotFound.csv';
+select * from '/tmp/FileNotFound.csv'
 
 statement error 42000!Table expression without table name
-select * from '/tmp/FileNotFound.csv.gz';
+select * from '/tmp/FileNotFound.csv.gz'
 
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to