diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-11-04 19:14:34 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-12-21 23:36:00 +0100 |
commit | 37f5569909d2b5a80e7f55b7b5d38d25ee2f0b5e (patch) | |
tree | 67533578c81f331955491101e1cb76a3819bfd8d /sql/sql_class.h | |
parent | 9ec2479778269fb33194c088216119d4f1dca58d (diff) | |
download | mariadb-git-37f5569909d2b5a80e7f55b7b5d38d25ee2f0b5e.tar.gz |
@@in_predicate_conversion_threshold
* rename in_subquery_conversion_threshold to in_predicate_conversion_threshold
* make it debug-only, hide from users
* change from ulong to uint - same type and range on all architectures
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 66c490c6acf..f78c181fdd5 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -704,7 +704,7 @@ typedef struct system_variables uint idle_write_transaction_timeout; uint column_compression_threshold; uint column_compression_zlib_level; - ulong in_subquery_conversion_threshold; + uint in_subquery_conversion_threshold; } SV; /** |