diff options
author | unknown <brian@grrr.local> | 2005-11-10 19:43:17 +0200 |
---|---|---|
committer | unknown <brian@grrr.local> | 2005-11-10 19:43:17 +0200 |
commit | c15954467e12eed5355f0dd628e59885040557e4 (patch) | |
tree | 781d2961359b06170c7bb7f8b43fc3749a1bcb1e /sql/authors.h | |
parent | bffefbf8b4a95b209bc069ffdbfc84d41b0acede (diff) | |
download | mariadb-git-c15954467e12eed5355f0dd628e59885040557e4.tar.gz |
Added "SHOW AUTHORS" code
mysql-test/r/show_check.result:
Update to results
mysql-test/t/show_check.test:
Added SHOW AUTHORS test
sql/field.h:
Fixed portability issue
sql/lex.h:
Added new keyword "AUTHORS"
sql/mysql_priv.h:
Added reference to new show command.
sql/sql_cache.h:
Fixed compile bug (more of these need to be fixed)
sql/sql_lex.h:
Added to com bit.
sql/sql_parse.cc:
Parsing for show authors
sql/sql_show.cc:
Added new show command for "SHOW AUTHORS"
sql/sql_yacc.yy:
Added new parse code for show authors.
Diffstat (limited to 'sql/authors.h')
-rw-r--r-- | sql/authors.h | 18 |
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} +}; |