Skip to content

Commit f1b1376

Browse files
committed
Deleted warnings from test-mysqldump and added regex to show-version.rec
1 parent fb3d791 commit f1b1376

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.patterns

Whitespace-only changes.

test/clt-tests/core/show-settings.rec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mysql -h0 -P1306 -e "SHOW SETTINGS;"
99
| Setting_name | Value |
1010
+----------------------------+------------------------------------------------------------+
1111
| configuration_file | /.clt/test/clt-tests/base/searchd-with-flexible-ports.conf |
12-
| worker_pid | 31 |
12+
| worker_pid | %{NUMBER} |
1313
| searchd.listen | %{IPADDR}:%{NUMBER}:mysql41 |
1414
| searchd.listen | %{IPADDR}:%{NUMBER} |
1515
| searchd.listen | %{IPADDR}:%{NUMBER}:http |

test/clt-tests/replication/test-replication-with-mysqldump.rec

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,6 @@ mysql -h0 -P1306 -e "REPLACE INTO c:tbl1 VALUES (1, 'Updated feline runs', 42, 3
189189
––– input –––
190190
mysqldump -etc --replace -u cluster -h0 -P1306 --skip-comments manticore c:tbl1 | mysql -h0 -P1306; echo $?
191191
––– output –––
192-
-- Warning: version string returned by server is incorrect.
193-
-- Warning: column statistics not supported by the server.
194192
0
195193
––– input –––
196194
for port in 1306 2306 3306; do echo "Data from c:tbl1 on port $port:"; mysql -h0 -P$port -e "SELECT * FROM c:tbl1 ORDER BY id ASC;"; done
@@ -233,8 +231,6 @@ mysql -h0 -P3306 -e "INSERT INTO c:tbl3 (id, f, a, b, j, m, s, e, d, v, fv) VALU
233231
––– input –––
234232
mysqldump -etc --replace --net-buffer-length=16M -u new_username -h0 -P2306 --skip-comments manticore c:tbl1 c:tbl2 c:tbl3 | mysql -h0 -P3306; echo $?
235233
––– output –––
236-
-- Warning: version string returned by server is incorrect.
237-
-- Warning: column statistics not supported by the server.
238234
0
239235
––– input –––
240236
for port in 1306 2306 3306; do echo "Data from c:tbl1 on port $port:"; mysql -h0 -P$port -e "SELECT * FROM c:tbl1 ORDER BY id ASC;"; done
@@ -477,8 +473,6 @@ rt_mem_limit = 536870912
477473
––– input –––
478474
mysqldump -etc --replace -u new_username -h0 -P2306 --skip-comments manticore tbl2 | mysql -P2306 -h0; echo $?
479475
––– output –––
480-
-- Warning: version string returned by server is incorrect.
481-
-- Warning: column statistics not supported by the server.
482476
0
483477
––– input –––
484478
mysql -h0 -P2306 -e "ALTER CLUSTER c ADD tbl2;"; echo $?

0 commit comments

Comments
 (0)