diff options
author | unknown <monty@hundin.mysql.fi> | 2001-12-10 17:51:07 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-12-10 17:51:07 +0200 |
commit | 2d1e16eb04a3e78830447400a55f7cd2291e566c (patch) | |
tree | 40df440fc1708f1f09301e5f4f923c08a4470ec9 /sql/sql_lex.h | |
parent | 6f8f45e9592aa7f2ca48168d51e1624cce158797 (diff) | |
download | mariadb-git-2d1e16eb04a3e78830447400a55f7cd2291e566c.tar.gz |
Fixed bug in GROUP BY ... DESC
Docs/manual.texi:
Changelog
libmysql/libmysql.c:
Fixed bug with mysql_use_result() when mysql_query() is called before mysql_free_result().
mysql-test/r/group_by.result:
New tests
mysql-test/t/group_by.test:
New tests
sql/stacktrace.c:
Fix for SCO
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 7a4a5034b18..8f81af3b548 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -140,7 +140,7 @@ typedef struct st_lex { enum lex_states next_state; enum enum_duplicates duplicates; enum enum_tx_isolation tx_isolation; - uint in_sum_expr,grant,grant_tot_col,which_columns, sort_default; + uint in_sum_expr,grant,grant_tot_col,which_columns; thr_lock_type lock_option; bool create_refs,drop_primary,drop_if_exists,local_file; bool in_comment,ignore_space,verbose; |