mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Cleanups: ignore more files.
This commit is contained in:
parent
7bf73ac3e5
commit
96f4c10dde
2 changed files with 10 additions and 4 deletions
|
@ -20,11 +20,15 @@
|
|||
*.res
|
||||
*.sbr
|
||||
*.so
|
||||
*.so.*
|
||||
*.spec
|
||||
*/*_pure_*warnings
|
||||
*/.pure
|
||||
*~
|
||||
.*.swp
|
||||
*.Po
|
||||
*.Plo
|
||||
*.lai
|
||||
./README.build-files
|
||||
./config.h
|
||||
./copy_mysql_files.bat
|
||||
|
@ -41,6 +45,9 @@
|
|||
.gdb_history
|
||||
.gdbinit
|
||||
.libs
|
||||
client/.libs -prune
|
||||
tests/.libs -prune
|
||||
tools/.libs -prune
|
||||
.o
|
||||
.out
|
||||
.snprj/*
|
||||
|
|
|
@ -1155,12 +1155,11 @@ insert into t values(5, 51);
|
|||
create view v1 as select qty, price, qty*price as value from t;
|
||||
create view v2 as select qty from v1;
|
||||
--echo mysqldump {
|
||||
--exec $MYSQL_DUMP --compact -F --tab . test
|
||||
--exec cat v1.sql
|
||||
--exec $MYSQL_DUMP --compact -F --tab $MYSQLTEST_VARDIR/tmp test
|
||||
--exec cat $MYSQLTEST_VARDIR/tmp/v1.sql
|
||||
--echo } mysqldump {
|
||||
--exec cat v2.sql
|
||||
--exec cat $MYSQLTEST_VARDIR/tmp/v2.sql
|
||||
--echo } mysqldump
|
||||
--rm v.sql t.sql t.txt
|
||||
drop view v1;
|
||||
drop view v2;
|
||||
drop table t;
|
||||
|
|
Loading…
Reference in a new issue