Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bf770c50
Commit
bf770c50
authored
May 22, 2012
by
Igor Babaev
Browse files
Options
Browse Files
Download
Plain Diff
Merge.
parents
44f5c1a8
055477ae
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
255 additions
and
16 deletions
+255
-16
mysql-test/r/statistics.result
mysql-test/r/statistics.result
+59
-0
mysql-test/t/statistics.test
mysql-test/t/statistics.test
+24
-0
sql/sql_admin.cc
sql/sql_admin.cc
+64
-4
sql/sql_lex.cc
sql/sql_lex.cc
+2
-0
sql/sql_lex.h
sql/sql_lex.h
+2
-0
sql/sql_statistics.cc
sql/sql_statistics.cc
+17
-10
sql/sql_yacc.yy
sql/sql_yacc.yy
+87
-2
No files found.
mysql-test/r/statistics.result
View file @
bf770c50
...
...
@@ -219,6 +219,65 @@ WHERE t1.e IS NOT NULL AND t1.b IS NOT NULL AND t1.d IS NOT NULL)
AS 'ARITY 3';
ARITY 1 ARITY 2 ARITY 3
6.2000 1.6875 1.1304
DELETE FROM mysql.table_stat;
DELETE FROM mysql.column_stat;
DELETE FROM mysql.index_stat;
ANALYZE TABLE t1 PERSISTENT FOR COLUMNS() INDEXES();
Table Op Msg_type Msg_text
test.t1 analyze status Table is already up to date
SELECT * FROM table_stat;
db_name table_name cardinality
test t1 40
SELECT * FROM column_stat;
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency
SELECT * FROM index_stat;
db_name table_name index_name prefix_arity avg_frequency
ANALYZE TABLE t1 PERSISTENT FOR COLUMNS(c,e,b) INDEXES(idx2,idx4);
Table Op Msg_type Msg_text
test.t1 analyze status Table is already up to date
SELECT * FROM table_stat;
db_name table_name cardinality
test t1 40
SELECT * FROM column_stat;
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency
test t1 b vvvvvvvvvvvvv zzzzzzzzzzzzzzzzzz 0.2000 17.1250 6.4000
test t1 c aaaa dddddddd 0.1250 6.6571 7.0000
test t1 e 0.01 0.112 0.2250 8.0000 6.2000
SELECT * FROM index_stat;
db_name table_name index_name prefix_arity avg_frequency
test t1 idx2 1 7.0000
test t1 idx2 2 2.3846
test t1 idx4 1 6.2000
test t1 idx4 2 1.6875
test t1 idx4 3 1.1304
DELETE FROM mysql.table_stat;
DELETE FROM mysql.column_stat;
DELETE FROM mysql.index_stat;
ANALYZE TABLE t1 PERSISTENT FOR COLUMNS ALL INDEXES ALL;
Table Op Msg_type Msg_text
test.t1 analyze status Table is already up to date
SELECT * FROM table_stat;
db_name table_name cardinality
test t1 40
SELECT * FROM column_stat;
db_name table_name column_name min_value max_value nulls_ratio avg_length avg_frequency
test t1 a 0 49 0.0000 4.0000 1.0000
test t1 b vvvvvvvvvvvvv zzzzzzzzzzzzzzzzzz 0.2000 17.1250 6.4000
test t1 c aaaa dddddddd 0.1250 6.6571 7.0000
test t1 d 1989-03-12 1999-07-23 0.1500 3.0000 8.5000
test t1 e 0.01 0.112 0.2250 8.0000 6.2000
test t1 f 1 5 0.2000 1.0000 6.4000
SELECT * FROM index_stat;
db_name table_name index_name prefix_arity avg_frequency
test t1 PRIMARY 1 1.0000
test t1 idx1 1 6.4000
test t1 idx1 2 1.6875
test t1 idx2 1 7.0000
test t1 idx2 2 2.3846
test t1 idx3 1 8.5000
test t1 idx4 1 6.2000
test t1 idx4 2 1.6875
test t1 idx4 3 1.1304
CREATE TABLE t2 LIKE t1;
ALTER TABLE t2 ENGINE=InnoDB;
INSERT INTO t2 SELECT * FROM t1;
...
...
mysql-test/t/statistics.test
View file @
bf770c50
...
...
@@ -181,6 +181,30 @@ SELECT
WHERE
t1
.
e
IS
NOT
NULL
AND
t1
.
b
IS
NOT
NULL
AND
t1
.
d
IS
NOT
NULL
)
AS
'ARITY 3'
;
DELETE
FROM
mysql
.
table_stat
;
DELETE
FROM
mysql
.
column_stat
;
DELETE
FROM
mysql
.
index_stat
;
ANALYZE
TABLE
t1
PERSISTENT
FOR
COLUMNS
()
INDEXES
();
SELECT
*
FROM
table_stat
;
SELECT
*
FROM
column_stat
;
SELECT
*
FROM
index_stat
;
ANALYZE
TABLE
t1
PERSISTENT
FOR
COLUMNS
(
c
,
e
,
b
)
INDEXES
(
idx2
,
idx4
);
SELECT
*
FROM
table_stat
;
SELECT
*
FROM
column_stat
;
SELECT
*
FROM
index_stat
;
DELETE
FROM
mysql
.
table_stat
;
DELETE
FROM
mysql
.
column_stat
;
DELETE
FROM
mysql
.
index_stat
;
ANALYZE
TABLE
t1
PERSISTENT
FOR
COLUMNS
ALL
INDEXES
ALL
;
SELECT
*
FROM
table_stat
;
SELECT
*
FROM
column_stat
;
SELECT
*
FROM
index_stat
;
CREATE
TABLE
t2
LIKE
t1
;
ALTER
TABLE
t2
ENGINE
=
InnoDB
;
...
...
sql/sql_admin.cc
View file @
bf770c50
...
...
@@ -27,6 +27,7 @@
#include "sql_acl.h" // *_ACL
#include "sp.h" // Sroutine_hash_entry
#include "sql_parse.h" // check_table_access
#include "strfunc.h"
#include "sql_admin.h"
/* Prepare, run and cleanup for mysql_recreate_table() */
...
...
@@ -640,16 +641,75 @@ static bool mysql_admin_table(THD* thd, TABLE_LIST* tables,
}
}
result_code
=
compl_result_code
=
0
;
if
(
operator_func
!=
&
handler
::
ha_analyze
||
thd
->
variables
.
optimizer_use_stat_tables
<
3
)
result_code
=
compl_result_code
=
HA_ADMIN_OK
;
if
(
operator_func
==
&
handler
::
ha_analyze
)
{
TABLE
*
tab
=
table
->
table
;
Field
**
field_ptr
=
tab
->
field
;
if
(
!
lex
->
column_list
)
{
uint
fields
=
0
;
for
(
;
*
field_ptr
;
field_ptr
++
,
fields
++
)
;
bitmap_set_prefix
(
tab
->
read_set
,
fields
);
}
else
{
int
pos
;
LEX_STRING
*
column_name
;
List_iterator_fast
<
LEX_STRING
>
it
(
*
lex
->
column_list
);
bitmap_clear_all
(
tab
->
read_set
);
while
((
column_name
=
it
++
))
{
if
(
tab
->
s
->
fieldnames
.
type_names
==
0
||
(
pos
=
find_type
(
&
tab
->
s
->
fieldnames
,
column_name
->
str
,
column_name
->
length
,
1
))
<=
0
)
{
compl_result_code
=
result_code
=
HA_ADMIN_INVALID
;
break
;
}
bitmap_set_bit
(
tab
->
read_set
,
--
pos
);
}
}
if
(
!
lex
->
index_list
)
{
tab
->
keys_in_use_for_query
.
init
(
tab
->
s
->
keys
);
}
else
{
int
pos
;
LEX_STRING
*
index_name
;
List_iterator_fast
<
LEX_STRING
>
it
(
*
lex
->
index_list
);
tab
->
keys_in_use_for_query
.
clear_all
();
while
((
index_name
=
it
++
))
{
if
(
tab
->
s
->
keynames
.
type_names
==
0
||
(
pos
=
find_type
(
&
tab
->
s
->
keynames
,
index_name
->
str
,
index_name
->
length
,
1
))
<=
0
)
{
compl_result_code
=
result_code
=
HA_ADMIN_INVALID
;
break
;
}
tab
->
keys_in_use_for_query
.
set_bit
(
--
pos
);
}
}
}
if
(
result_code
==
HA_ADMIN_OK
&&
(
operator_func
!=
&
handler
::
ha_analyze
||
thd
->
variables
.
optimizer_use_stat_tables
<
3
))
{
DBUG_PRINT
(
"admin"
,
(
"calling operator_func '%s'"
,
operator_name
));
result_code
=
(
table
->
table
->
file
->*
operator_func
)(
thd
,
check_opt
);
DBUG_PRINT
(
"admin"
,
(
"operator_func returned: %d"
,
result_code
));
}
if
(
operator_func
==
&
handler
::
ha_analyze
&&
opt_with_stat_tables
&&
if
(
compl_result_code
==
HA_ADMIN_OK
&&
operator_func
==
&
handler
::
ha_analyze
&&
opt_with_stat_tables
&&
thd
->
variables
.
optimizer_use_stat_tables
>
0
)
{
if
(
!
(
compl_result_code
=
...
...
sql/sql_lex.cc
View file @
bf770c50
...
...
@@ -456,6 +456,8 @@ void lex_start(THD *thd)
lex
->
set_var_list
.
empty
();
lex
->
param_list
.
empty
();
lex
->
view_list
.
empty
();
lex
->
column_list
=
NULL
;
lex
->
index_list
=
NULL
;
lex
->
prepared_stmt_params
.
empty
();
lex
->
auxiliary_table_list
.
empty
();
lex
->
unit
.
next
=
lex
->
unit
.
master
=
...
...
sql/sql_lex.h
View file @
bf770c50
...
...
@@ -2383,6 +2383,8 @@ struct LEX: public Query_tables_list
List
<
Item_func_set_user_var
>
set_var_list
;
// in-query assignment list
List
<
Item_param
>
param_list
;
List
<
LEX_STRING
>
view_list
;
// view list (list of field names in view)
List
<
LEX_STRING
>
*
column_list
;
// list of column names (in ANALYZE)
List
<
LEX_STRING
>
*
index_list
;
// list of index names (in ANALYZE)
/*
A stack of name resolution contexts for the query. This stack is used
at parse time to set local name resolution contexts for various parts
...
...
sql/sql_statistics.cc
View file @
bf770c50
...
...
@@ -1289,6 +1289,8 @@ int collect_statistics_for_table(THD *thd, TABLE *table)
{
table_field
=
*
field_ptr
;
uint
max_heap_table_size
=
thd
->
variables
.
max_heap_table_size
;
if
(
!
bitmap_is_set
(
table
->
read_set
,
table_field
->
field_index
))
continue
;
set_nulls_for_write_column_stat_values
(
table_field
);
table_field
->
nulls
=
0
;
table_field
->
column_total_length
=
0
;
...
...
@@ -1306,8 +1308,6 @@ int collect_statistics_for_table(THD *thd, TABLE *table)
table_field
->
count_distinct
=
NULL
;
}
bitmap_set_all
(
table
->
read_set
);
/* Perform a full table scan to collect statistics on 'table's columns */
if
(
!
(
rc
=
file
->
ha_rnd_init
(
TRUE
)))
{
...
...
@@ -1319,6 +1319,8 @@ int collect_statistics_for_table(THD *thd, TABLE *table)
for
(
field_ptr
=
table
->
field
;
*
field_ptr
;
field_ptr
++
)
{
table_field
=
*
field_ptr
;
if
(
!
bitmap_is_set
(
table
->
read_set
,
table_field
->
field_index
))
continue
;
if
(
table_field
->
is_null
())
table_field
->
nulls
++
;
else
...
...
@@ -1357,6 +1359,8 @@ int collect_statistics_for_table(THD *thd, TABLE *table)
for
(
field_ptr
=
table
->
field
;
*
field_ptr
;
field_ptr
++
)
{
table_field
=
*
field_ptr
;
if
(
!
bitmap_is_set
(
table
->
read_set
,
table_field
->
field_index
))
continue
;
table_field
->
write_stat
.
nulls_ratio
=
(
double
)
table_field
->
nulls
/
rows
;
table_field
->
write_stat
.
avg_length
=
(
double
)
table_field
->
column_total_length
/
(
rows
-
table_field
->
nulls
);
...
...
@@ -1380,12 +1384,13 @@ int collect_statistics_for_table(THD *thd, TABLE *table)
if
(
!
rc
)
{
uint
keys
=
table
->
s
->
keys
;
uint
key
;
key_map
::
Iterator
it
(
table
->
keys_in_use_for_query
);
/* Collect statistics for indexes */
for
(
uint
i
=
0
;
i
<
keys
;
i
++
)
while
((
key
=
it
++
)
!=
key_map
::
Iterator
::
BITMAP_END
)
{
if
((
rc
=
collect_statistics_for_index
(
table
,
i
)))
if
((
rc
=
collect_statistics_for_index
(
table
,
key
)))
break
;
}
}
...
...
@@ -1439,7 +1444,6 @@ int update_statistics_for_table(THD *thd, TABLE *table)
int
err
;
int
rc
=
0
;
TABLE
*
stat_table
;
uint
keys
=
table
->
s
->
keys
;
DBUG_ENTER
(
"update_statistics_for_table"
);
...
...
@@ -1466,6 +1470,8 @@ int update_statistics_for_table(THD *thd, TABLE *table)
for
(
Field
**
field_ptr
=
table
->
field
;
*
field_ptr
;
field_ptr
++
)
{
Field
*
table_field
=
*
field_ptr
;
if
(
!
bitmap_is_set
(
table
->
read_set
,
table_field
->
field_index
))
continue
;
restore_record
(
stat_table
,
s
->
default_values
);
column_stat
.
set_key_fields
(
table_field
);
err
=
column_stat
.
update_stat
();
...
...
@@ -1475,12 +1481,13 @@ int update_statistics_for_table(THD *thd, TABLE *table)
/* Update the statistical table index_stat */
stat_table
=
tables
[
INDEX_STAT
].
table
;
uint
key
;
key_map
::
Iterator
it
(
table
->
keys_in_use_for_query
);
Index_stat
index_stat
(
stat_table
,
table
);
KEY
*
key_info
,
*
key_info_end
;
for
(
key_info
=
table
->
key_info
,
key_info_end
=
table
->
key_info
+
keys
;
key_info
<
key_info_end
;
key_info
++
)
while
((
key
=
it
++
)
!=
key_map
::
Iterator
::
BITMAP_END
)
{
KEY
*
key_info
=
table
->
key_info
+
key
;
uint
key_parts
=
table
->
actual_n_key_parts
(
key_info
);
for
(
i
=
0
;
i
<
key_parts
;
i
++
)
{
...
...
sql/sql_yacc.yy
View file @
bf770c50
...
...
@@ -1593,7 +1593,12 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
show describe load alter optimize keycache preload flush
reset purge begin commit rollback savepoint release
slave master_def master_defs master_file_def slave_until_opts
repair analyze check start checksum
repair analyze
analyze_table_list analyze_table_elem_spec
opt_persistent_stat_clause persistent_stat_spec
persistent_column_stat_spec persistent_index_stat_spec
table_column_list table_index_list
check start checksum
field_list field_list_item field_spec kill column_def key_def
keycache_list keycache_list_or_parts assign_to_keycache
assign_to_keycache_parts
...
...
@@ -7212,7 +7217,7 @@ analyze:
/* Will be overriden during execution. */
YYPS->m_lock_type= TL_UNLOCK;
}
table_list
analyze_
table_list
{
THD *thd= YYTHD;
LEX* lex= thd->lex;
...
...
@@ -7223,6 +7228,86 @@ analyze:
}
;
analyze_table_list:
analyze_table_elem_spec
| analyze_table_list ',' analyze_table_elem_spec
;
analyze_table_elem_spec:
table_name opt_persistent_stat_clause
;
opt_persistent_stat_clause:
/* empty */
{}
| PERSISTENT_SYM FOR_SYM persistent_stat_spec
{}
;
persistent_stat_spec:
ALL
{}
| COLUMNS persistent_column_stat_spec INDEXES persistent_index_stat_spec
{}
persistent_column_stat_spec:
ALL {}
| '('
{
THD *thd= YYTHD;
LEX* lex= thd->lex;
lex->column_list= new List<LEX_STRING>;
if (lex->column_list == NULL)
MYSQL_YYABORT;
}
table_column_list
')'
;
persistent_index_stat_spec:
ALL {}
| '('
{
THD *thd= YYTHD;
LEX* lex= thd->lex;
lex->index_list= new List<LEX_STRING>;
if (lex->index_list == NULL)
MYSQL_YYABORT;
}
table_index_list
')'
;
table_column_list:
/* empty */
{}
| ident
{
Lex->column_list->push_back((LEX_STRING*)
sql_memdup(&$1, sizeof(LEX_STRING)));
}
| table_column_list ',' ident
{
Lex->column_list->push_back((LEX_STRING*)
sql_memdup(&$3, sizeof(LEX_STRING)));
}
;
table_index_list:
/* empty */
{}
| ident
{
Lex->index_list->push_back((LEX_STRING*)
sql_memdup(&$1, sizeof(LEX_STRING)));
}
| table_index_list ',' ident
{
Lex->index_list->push_back((LEX_STRING*)
sql_memdup(&$3, sizeof(LEX_STRING)));
}
;
binlog_base64_event:
BINLOG_SYM TEXT_STRING_sys
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment