mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.2' into 10.3
This commit is contained in:
@ -313,6 +313,22 @@ handler v read next;
|
||||
ERROR 42S02: Unknown table 'v' in HANDLER
|
||||
drop view v;
|
||||
#
|
||||
# 10.2 Test
|
||||
#
|
||||
# MDEV-20207: Assertion `! is_set()' failed in
|
||||
# Diagnostics_area::set_eof_status upon HANDLER READ
|
||||
#
|
||||
DROP TABLE IF EXISTS t1;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 'test.t1'
|
||||
CREATE TABLE t1 (a POINT, KEY(a));
|
||||
HANDLER t1 OPEN h;
|
||||
HANDLER h READ a = (0);
|
||||
ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
|
||||
HANDLER h CLOSE;
|
||||
DROP TABLE t1;
|
||||
# End of 10.2 Test
|
||||
#
|
||||
# MDEV-15813 ASAN use-after-poison in hp_hashnr upon
|
||||
# HANDLER READ on a versioned HEAP table
|
||||
#
|
||||
|
Reference in New Issue
Block a user