Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
10.11.9, 11.4.3
-
Linux, Windows
Description
Hello.
When creating a table using SQL query
CREATE TABLE table_name SELECT field FROM table_source |
creates an empty table without records, if you perform SELECT separately, you can see that there are rows, but they are not added to the table.
The problem is floating, for example, if you remove any selection filter conditions, then the table is created with records. There are no errors in this case, so it is very difficult to know about the problem, as a result it leads to very serious problems in different areas of database application, for example, if it is a financial transaction, then it is a complete loss of information, the data as if there is, but in the table they are not.
The problem was found on Mariadb version 10.11.9.
We switched to Mariadb 11.4.3, which supposedly did not have this problem, but it turned out it does, with a different set of data and query conditions (added JOIN) the problem appeared again!
How to repeat the problem. I provide queries and tables dump.
DROP TABLE IF EXISTS problem_table; |
|
CREATE TABLE problem_table |
SELECT product_id |
FROM et_price_product t1 |
INNER JOIN et_price_import_setup t2 ON t2.price_id = t1.price_id AND t2.uuid_parent = '' AND t2.status=1 |
Attachments
Issue Links
- is caused by
-
MDEV-33087 ALTER TABLE...ALGORITHM=COPY should build indexes more efficiently
-
- Closed
-
Thank you very much for the report!
I repeated as described on 10.11-11.6 with InnoDB (create as select engine=myisam works), 10.5,10.6 works as expected.
Caused by cc8eefb0dc commit
--source include/have_innodb.inc
CREATE TABLE t2 (
price_id int(11) NOT NULL,
status tinyint(1) NOT NULL DEFAULT 1,
uuid_parent varchar(80) NOT NULL,
PRIMARY KEY (price_id),
KEY (status),
KEY (uuid_parent)
) ENGINE=InnoDB ;
INSERT INTO t2 VALUES(34,1,''),(48,1,''),(55,0,''),(82,0,''),(97,0,''),(145,1,''),(151,0,''),(170,0,''),(184,0,''),(199,0,''),(222,0,''),(223,0,''),(227,0,''),(229,0,''),(232,1,''),(233,0,''),(238,0,''),(240,0,''),(244,1,''),(247,0,''),(252,0,''),(256,0,''),(267,0,''),(269,0,''),(271,1,''),(283,0,''),(292,0,''),(307,0,''),(309,1,''),(313,1,''),(316,1,''),(320,0,''),(321,1,''),(325,1,''),(330,1,''),(333,0,''),(335,0,''),(336,1,''),(337,1,''),(383,1,''),(400,1,''),(402,1,''),(404,0,''),(405,1,'efa1ef46-1514-11ea-b7dd-309c239ced1a'),(406,0,''),(408,1,''),(410,1,''),(414,1,''),(415,1,''),(418,1,'e2a676b2-b07e-11ed-b995-9600005f1103'),(420,0,''),(421,1,''),(422,1,''),(423,0,''),(424,1,''),(426,1,'');
CREATE TABLE t1 (
supply_product_id bigint(20) NOT NULL,
price_id int(11) NOT NULL,
product_id bigint(20) NOT NULL,
KEY (price_id),
KEY (product_id)
) ENGINE=InnoDB;
INSERT INTO t1 VALUES (96538366,227,0),(96538367,227,0),(96538368,227,0),(96538369,227,0),(96538370,227,0),(96538371,227,0),(96538372,227,0),(96538373,227,0),(96538374,227,0),(96538375,227,0),(96538376,227,0),(96538377,227,0),(97134475,55,0),(97134476,55,0),(97134483,55,0),(97134485,55,0),(97134486,55,0),(97134487,55,0),(97134488,55,0),(97134489,55,0),(97134495,55,0),(97134499,55,0),(97134501,55,0),(97134502,55,0),(97134508,55,0),(97134511,55,0),(97134515,55,0),(97134519,55,0),(97134537,55,0),(97134538,55,0),(97134544,55,0),(97134545,55,0),(97134588,55,0),(97134601,55,0),(97134621,55,0),(97134623,55,0),(97134624,55,0),(97134625,55,0),(97134626,55,0),(97134627,55,0),(97134628,55,0),(97134629,55,0),(97138176,267,0),(98484651,145,0),(98484652,145,0),(98484653,145,0),(98484654,145,0),(98484666,145,0),(98484670,145,0),(98484674,145,0),(98484680,145,0),(98484681,145,0),(98484685,145,0),(98484689,145,0),(98484691,145,0),(98484692,145,0),(98484693,145,0),(98484700,145,0),(98484702,145,0),(98484703,145,0),(98484705,145,0),(98484708,145,0),(98484710,145,0),(98484713,145,0),(98484715,145,0),(98484716,145,0),(98484719,145,0),(98484720,145,0),(98484721,145,0),(98484724,145,0),(98484725,145,0),(98484726,145,0),(98484727,145,0),(98484728,145,0),(98484732,145,0),(98484733,145,0),(98484734,145,0),(98484735,145,0),(98484736,145,0),(98484737,145,0),(98484738,145,0),(98484739,145,0),(98484740,145,0),(98484741,145,0),(98484742,145,0),(98484743,145,0),(98484744,145,0),(98484745,145,0),(98484746,145,0),(98484747,145,0),(98484748,145,0),(98484749,145,0);
CREATE TABLE t engine=innodb
SELECT product_id FROM t1 JOIN t2 ON t2.price_id = t1.price_id AND t2.uuid_parent = '' AND t2.status=1 ;
select count(*) from t;
drop table t1,t2,t;