projects
/
slony1-engine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3e785c
)
Add a test case to trigger bug 291.
author
Jan Wieck
<
[email protected]
>
Fri, 7 Jun 2013 19:32:44 +0000
(15:32 -0400)
committer
Jan Wieck
<
[email protected]
>
Fri, 7 Jun 2013 19:32:44 +0000
(15:32 -0400)
clustertest/regression/test1/test1.js
patch
|
blob
|
blame
|
history
diff --git
a/clustertest/regression/test1/test1.js
b/clustertest/regression/test1/test1.js
index ef0bbb7dec78626889293b2b81c8073c7fec4c71..d9e76e7a3d9721047c061af1703244dc1ee2ccad 100644
(file)
--- a/
clustertest/regression/test1/test1.js
+++ b/
clustertest/regression/test1/test1.js
@@
-89,6
+89,9
@@
function generate_data() {
sqlScript += "insert into x1 (data) values (E'"+txta+"');\n";
sqlScript += "insert into x2 (data) select data from x1 order by random() limit 2;\n";
sqlScript += "insert into x3 (data) select data from x2 order by random() limit 2;\n";
+
+ // This triggered bug 291
+ sqlScript += "update table5 set d1 = d1;\n";
}
return sqlScript;
}