summaryrefslogtreecommitdiff
path: root/support-files/build-tags
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-06-17 11:59:38 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-06-17 11:59:38 +0400
commit03691a77718c781469b5675c6b03d6064255debb (patch)
tree8e8b24229e7334fa766b3feb8fd6e2b21cf095a6 /support-files/build-tags
parent9718b9763deeaa41008aeca31c24548e556401cc (diff)
downloadmariadb-git-03691a77718c781469b5675c6b03d6064255debb.tar.gz
SHOW EXPLAIN UPDATE/DELETE
- Introduce "Query Plan Footprints" (abbrev. QPFs) QPF is a part of query plan that is 1. sufficient to produce EXPLAIN output, 2. can be used to produce EXPLAIN output even after its subquery/union was executed and deleted 3. is cheap to save so that we can always save query plans - This patch doesn't fully address #2, we make/save strings for a number of EXPLAIN's columns. This will be fixed.
Diffstat (limited to 'support-files/build-tags')
-rwxr-xr-xsupport-files/build-tags2
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/build-tags b/support-files/build-tags
index b5386dc79c3..31e67a4ebfe 100755
--- a/support-files/build-tags
+++ b/support-files/build-tags
@@ -6,7 +6,7 @@ filter='\.cc$\|\.c$\|\.h$\|\.yy$'
list="find . -type f"
bzr root >/dev/null 2>/dev/null && list="bzr ls --from-root -R --kind=file --versioned"
-$list |grep $filter |while read f;
+$list |grep $filter | grep -v gen-cpp |while read f;
do
etags -o TAGS --append $f
done