You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
This is a fix of logging subsystem, nothing else. The old code expanded an argument into string and advanced too little and, if expansion contained argument's index, it expanded it again. And again.
8 lines
182 B
Plaintext
8 lines
182 B
Plaintext
DROP DATABASE IF EXISTS MCOL5599;
|
|
CREATE DATABASE MCOL5599;
|
|
USE MCOL5599;
|
|
CREATE TABLE t (t TEXT) ENGINE = COLUMNSTORE;
|
|
SELECT * FROM t WHERE t LIKE '%1%';
|
|
t
|
|
DROP DATABASE MCOL5599;
|