mirror of
https://github.com/MariaDB/server.git
synced 2025-06-03 07:02:23 +03:00
Merging the following features from sql_yacc.yy to sql_yacc_ora.yy: - system versioning - column compression - table value constructor - spatial predicate WITHIN - DELETE_DOMAIN_ID
10 lines
265 B
Plaintext
10 lines
265 B
Plaintext
SET sql_mode=ORACLE;
|
|
SET column_compression_zlib_wrap=true;
|
|
CREATE TABLE t1 (a BLOB COMPRESSED);
|
|
INSERT INTO t1 VALUES (REPEAT('a',10000));
|
|
SELECT DATA_LENGTH<100 AS c FROM INFORMATION_SCHEMA.TABLES
|
|
WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test';
|
|
c
|
|
1
|
|
DROP TABLE t1;
|