Changeset: 6c7e753b6337 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=6c7e753b6337
Modified Files:
        sql/backends/monet5/datacell/Tests/scenario02.sql
Branch: default
Log Message:

Make the script naming-wise unique


diffs (36 lines):

diff --git a/sql/backends/monet5/datacell/Tests/scenario02.sql 
b/sql/backends/monet5/datacell/Tests/scenario02.sql
--- a/sql/backends/monet5/datacell/Tests/scenario02.sql
+++ b/sql/backends/monet5/datacell/Tests/scenario02.sql
@@ -4,18 +4,18 @@
 
 set optimizer='datacell_pipe';
 
-create table datacell.bsktin(
+create table datacell.potin(
     id integer,
     tag timestamp,
     payload integer
 );
-create table datacell.bsktout( tag timestamp, cnt integer);
+create table datacell.potout( tag timestamp, cnt integer);
 
-call datacell.receptor('datacell.bsktin','localhost',50500);
+call datacell.receptor('datacell.potin','localhost',50500);
 
-call datacell.emitter('datacell.bsktout','localhost',50600);
+call datacell.emitter('datacell.potout','localhost',50600);
 
-call datacell.query('datacell.pass', 'insert into datacell.bsktout select 
now(), count(*) from datacell.bsktin;');
+call datacell.query('datacell.putter', 'insert into datacell.potout select 
now(), count(*) from datacell.potin;');
 
 call datacell.resume();
 call datacell.dump();
@@ -28,6 +28,6 @@
 
 -- wrapup
 call datacell.postlude();
-drop table datacell.bsktin;
-drop table datacell.bsktout;
+drop table datacell.potin;
+drop table datacell.potout;
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to