summaryrefslogtreecommitdiff
path: root/sql/authors.h
diff options
context:
space:
mode:
authorbrian@grrr.local <>2005-11-10 19:43:17 +0200
committerbrian@grrr.local <>2005-11-10 19:43:17 +0200
commit98071621447b5fc8270f88198497af598c0f0ee9 (patch)
tree781d2961359b06170c7bb7f8b43fc3749a1bcb1e /sql/authors.h
parent2cb601c84050654a5731ac6f5f994acc1f02eabb (diff)
downloadmariadb-git-98071621447b5fc8270f88198497af598c0f0ee9.tar.gz
Added "SHOW AUTHORS" code
Diffstat (limited to 'sql/authors.h')
-rw-r--r--sql/authors.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/sql/authors.h b/sql/authors.h
new file mode 100644
index 00000000000..20cfeabfd80
--- /dev/null
+++ b/sql/authors.h
@@ -0,0 +1,18 @@
+/***************************************************************************
+** Output from "SHOW AUTHORS"
+** If you can update it, you get to be in it :)
+** Dont be offended if your name is not in here, just add it!
+***************************************************************************/
+
+struct show_table_authors_st {
+ const char *name;
+ const char *location;
+ const char *comment;
+};
+
+struct show_table_authors_st show_table_authors[]= {
+ { "Brian \"Krow\" Aker", "Seattle, WA. USA",
+ "Architecture, archive, federated, buncha of little stuff :)" },
+ { "David Axmark", "Uppsala, Sweden", "Small stuff long time ago, Monty ripped it out!"},
+ {NULL, NULL, NULL}
+};