Explore the HANDLER statement in MariaDB Server for direct table access. This section details how to bypass the SQL optimizer for low-level row operations, useful for specific NoSQL-like interactions.
HANDLER tbl_name OPEN [ [AS] alias]
HANDLER tbl_name READ index_name { = | >= | <= | < } (value1,value2,...)
[ WHERE where_condition ] [LIMIT ... ]
HANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }
[ WHERE where_condition ] [LIMIT ... ]
HANDLER tbl_name READ { FIRST | NEXT }
[ WHERE where_condition ] [LIMIT ... ]
HANDLER tbl_name CLOSE
The HANDLER
statement provides direct access to table storage engine interfaces for key lookups and key or table scans. It is available for at least Aria, Memory, MyISAM and InnoDB tables (and should work with most 'normal' storage engines, but not with system tables, MERGE or views).
HANDLER ... OPEN
opens a table, allowing it to be accessible to subsequent HANDLER ... READ
statements. The table can either be opened using an alias, or a table name. If opened with an alias, references to this table by further HANDLER statements must use this alias, and not the table name. If opened with a table name qualified by database name, further references to this table must use the unqualified table name. For example, if a table is opened with db1.t1
, further references must use t1
.
The table object is only closed when HANDLER ... CLOSE
is called by the session, or the session closes, and is not shared by other sessions.
Prepared statements work with HANDLER READ
, which gives a much higher performance (50% speedup) as there is no parsing and all data is transformed in binary (without conversions to text, as with the normal protocol).
The HANDLER
command does not work with partitioned tables.
A key lookup is started with:
HANDLER tbl_name READ index_name { = | >= | <= | < } (value,value) [LIMIT...]
The values stands for the value of each of the key columns. For most key types, except for HASH
keys in MEMORY
storage engine, you can use a prefix subset of its columns.
If you are using LIMIT, then in case of >= or > then there is an implicit NEXT implied, while if you are using <= or < then there is an implicit PREV implied.
After the initial read, you can use the following to scan rows in key order:
HANDLER tbl_name READ index_name NEXT [ LIMIT ... ]
or
HANDLER tbl_name READ index_name PREV [ LIMIT ... ]
Note that the row order is not defined for keys with duplicated values, and will vary from engine to engine.
You can scan a table in key order by doing this:
HANDLER tbl_name READ index_name FIRST [ LIMIT ... ]
HANDLER tbl_name READ index_name NEXT [ LIMIT ... ]
Alternatively, if the handler supports backwards key scans (which most do), you can use this:
HANDLER tbl_name READ index_name LAST [ LIMIT ... ]
HANDLER tbl_name READ index_name PREV [ LIMIT ... ]
You can scan a table in row order by doing this:
HANDLER tbl_name READ FIRST [ LIMIT ... ]
HANDLER tbl_name READ NEXT [ LIMIT ... ]
As this is a direct interface to the storage engine, some limitations may apply for what you can do and what happens if the table changes. Here are some of the common limitations.
HANDLER READ
is not transaction-safe, consistent or atomic. It's okay for the storage engine to return rows that existed when you started the scan, but that were later deleted. This can happen as the storage engine may cache rows as part of the scan from a previous read.
You may also find rows committed since the scan originally started.
HANDLER ... READ
also reads the data of invisible columns.
HANDLER ... READ
reads everything from system-versioned tables, and so includes row_start
and row_end
fields, as well as all rows that have since been deleted or changed, including when history partitions are used.
If you do an ALTER TABLE, all your HANDLER
s for that table are automatically closed.
If you do an ALTER TABLE
for a table that is used by some other connection with HANDLER
, the ALTER TABLE
query waits for the HANDLER
to be closed.
For HASH
keys, you must use all key parts when searching for a row.
For HASH
keys, you can't do a key scan of all values. You can only find all rows with the same key value.
While each HANDLER READ
command is atomic, if you do a scan in many steps, some engines may give you error 1020 if the table changed between the commands. Please refer to the specific engine handler page if this happens.
Error 1031 (ER_ILLEGAL_HA
) Table storage engine for 't1' doesn't have this option
If you get this for HANDLER OPEN
it means the storage engine doesn't support HANDLER
calls.
If you get this for HANDLER READ
, it means you are trying to use an incomplete HASH
key.
Error 1020 (ER_CHECKREAD
) Record has changed since last read in table '...'
This means that the table changed between two reads, and the handler can't handle this case for the given scan.
CREATE TABLE t1 (f1 INT);
INSERT INTO t1 VALUES (1),(2),(3);
HANDLER t1 OPEN;
HANDLER t1 READ NEXT;
+------+
| f1 |
+------+
| 1 |
+------+
HANDLER t1 READ NEXT;
+------+
| f1 |
+------+
| 2 |
+------+
In the previous example, the HANDLER
was opened with the t1
table name. Since HANDLER
s use unqualified table names, trying to access another table with this same name, even though it's in another database, will result in ambiguity. An alias needs to be used to avoid the ambiguity, resulting in Error 1066: Not unique table/alias:
CREATE DATABASE db_new;
CREATE TABLE db_new.t1 (id INT);
INSERT INTO db_new.t1 VALUES (4),(5),(6);
HANDLER db_new.t1 OPEN;
ERROR 1066 (42000): Not unique table/alias: 't1'
HANDLER db_new.t1 OPEN AS db_new_t1;
HANDLER db_new_t1 READ NEXT LIMIT 3;
+------+
| id |
+------+
| 4 |
| 5 |
| 6 |
+------+
This page is licensed: GPLv2, originally from fill_help_tables.sql
This article explains how to use HANDLER commands efficiently with MEMORY/HEAP tables.
If you want to scan a table for different key values, not just search for exact key values, you should create your keys with USING BTREE
:
CREATE TABLE t1 (a INT, b INT, KEY(a), KEY b USING BTREE (b)) ENGINE=memory;
In the above table, a
is a HASH key that only supports exact matches (=) while b
is a BTREE key that you can use to scan the table in key order, starting from start or from a given key value.
The limitations for HANDLER READ
with MEMORY|HEAP
tables are:
You must use all key parts when searching for a row.
You can't do a key scan of all values. You can only find all rows with the same key value.
READ NEXT
gives an error 1031 if the tables changed since last read.
READ NEXT
gives an error 1031 if the tables changed since last read. This limitation can be lifted in the future.
READ NEXT
gives an error 1031 if the table was truncated since last READ
call.
See also the limitations listed in HANDLER commands.
This page is licensed: CC BY-SA / Gnu FDL