diff options
author | unknown <sergefp@mysql.com> | 2004-05-07 03:33:39 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2004-05-07 03:33:39 +0400 |
commit | d55809d8911f0a2c479d99770624deb07a71a974 (patch) | |
tree | 1bf1a4b154ec42ff1b195c79c54a86b9f8bfdf4a /sql/sql_lex.h | |
parent | 33e6b2af85ec92a65669af5330f187f1d39e2b7a (diff) | |
parent | dee8f22c079addf7ed2a27ea6ed73a81f52c5cb7 (diff) | |
download | mariadb-git-d55809d8911f0a2c479d99770624deb07a71a974.tar.gz |
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/dbdata/psergey/mysql-4.1-ps-merge
sql/item.cc:
Auto merged
sql/item.h:
Auto merged
sql/sql_lex.h:
Auto merged
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index aa3e81fd9c9..543c58442cd 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -76,6 +76,7 @@ enum enum_sql_command { SQLCOM_SHOW_COLUMN_TYPES, SQLCOM_SHOW_STORAGE_ENGINES, SQLCOM_SHOW_PRIVILEGES, SQLCOM_HELP, SQLCOM_DROP_USER, SQLCOM_REVOKE_ALL, SQLCOM_CHECKSUM, + SQLCOM_PREPARE, SQLCOM_EXECUTE, SQLCOM_DEALLOCATE_PREPARE, /* This should be the last !!! */ SQLCOM_END }; @@ -604,6 +605,11 @@ typedef struct st_lex bool in_comment, ignore_space, verbose, simple_alter, no_write_to_binlog; bool derived_tables; bool safe_to_cache_query; + /* Prepared statements SQL syntax:*/ + LEX_STRING prepared_stmt_name; /* Statement name (in all queries) */ + LEX_STRING prepared_stmt_code; /* Statement query (in PREPARE )*/ + /* Names of user variables holding parameters (in EXECUTE) */ + List<LEX_STRING> prepared_stmt_params; st_lex() {} inline void uncacheable(uint8 cause) { |