Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.4.26, 10.6.9, 10.8.4, 10.11
-
None
-
None
Description
Hi Georg, whassup?
I found another bug related to executemany. (Does not affect execute with explicit values)
If my table has any trigger, only one row is inserted. But, the trigger is called n times (n rows passed) with the same data.
import mariadb |
|
db = mariadb.connect(host='10.4.0.8', user='Administrador', password='XXXXX', database='tmp') |
qr = db.cursor(buffered=True) |
qr.execute('drop table if exists aaa') |
qr.execute("""
|
CREATE TABLE `aaa` (
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
`some_field` varchar(10) DEFAULT '', |
PRIMARY KEY (`id`) |
) ENGINE=InnoDB |
""")
|
|
to_be_inserted = [(None, f'aaa_{i}') for i in range(10)] |
qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) |
inserted = qr.fetchall() |
print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) |
|
# ----------------------
|
qr.execute('drop table if exists aaa_spy') |
qr.execute("""
|
CREATE TABLE `aaa_spy` (
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
`aaa_id` int(10) unsigned NOT NULL, |
`aaa_some_field` varchar(10) DEFAULT '', |
PRIMARY KEY (`id`) |
) ENGINE=MyISAM |
""")
|
qr.execute('drop trigger if exists aaa_after_insert') |
qr.execute("""
|
CREATE TRIGGER aaa_after_insert
|
AFTER INSERT
|
ON aaa FOR EACH ROW
|
insert into aaa_spy values (null, new.id, new.some_field) |
""")
|
|
to_be_inserted = [(None, f'aaa_{i}') for i in range(10, 20)] |
qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) |
inserted = qr.fetchall() |
print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) # Wrong! |
|
# What was inserted?
|
qr.execute('select aaa_id, aaa_some_field from aaa_spy where aaa_id >= 11') |
# always the same data...
|
for _id, f in qr: |
print(_id, f) |
This snippet returns this:
Should be 10 got 10 . What whas inserted: [(1,), (2,), (3,), (4,), (5,), (6,), (7,), (8,), (9,), (10,)]
|
Should be 10 got 1 . What whas inserted: [(16,)]
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
16 aaa_10
|
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
Hi Georg, whassup?
I found another bug related to executemany. If my table has any trigger, only one row is inserted. But, the trigger is called _n_ times (n rows passed) with the same data. {code:python} import mariadb db = mariadb.connect(host='10.4.0.8', user='Administrador', password='XXXXX', database='tmp') qr = db.cursor(buffered=True) qr.execute('drop table if exists aaa') qr.execute(""" CREATE TABLE `aaa` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `some_field` varchar(10) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB """) to_be_inserted = [(None, f'aaa_{i}') for i in range(10)] qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) inserted = qr.fetchall() print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) # ---------------------- qr.execute('drop table if exists aaa_spy') qr.execute(""" CREATE TABLE `aaa_spy` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aaa_id` int(10) unsigned NOT NULL, `aaa_some_field` varchar(10) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM """) qr.execute('drop trigger if exists aaa_after_insert') qr.execute(""" CREATE TRIGGER aaa_after_insert AFTER INSERT ON aaa FOR EACH ROW insert into aaa_spy values (null, new.id, new.some_field) """) to_be_inserted = [(None, f'aaa_{i}') for i in range(10, 20)] qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) inserted = qr.fetchall() print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) # Wrong! # What was inserted? qr.execute('select aaa_id, aaa_some_field from aaa_spy where aaa_id >= 11') # always the same data... for _id, f in qr: print(_id, f) {code} This snippet returns this: {code:text} Should be 10 got 10 . What whas inserted: [(1,), (2,), (3,), (4,), (5,), (6,), (7,), (8,), (9,), (10,)] Should be 10 got 1 . What whas inserted: [(16,)] 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 {code} |
Hi Georg, whassup?
I found another bug related to executemany. (Does not affect execute with explicit values) If my table has any trigger, only one row is inserted. But, the trigger is called _n_ times (n rows passed) with the same data. {code:python} import mariadb db = mariadb.connect(host='10.4.0.8', user='Administrador', password='XXXXX', database='tmp') qr = db.cursor(buffered=True) qr.execute('drop table if exists aaa') qr.execute(""" CREATE TABLE `aaa` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `some_field` varchar(10) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB """) to_be_inserted = [(None, f'aaa_{i}') for i in range(10)] qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) inserted = qr.fetchall() print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) # ---------------------- qr.execute('drop table if exists aaa_spy') qr.execute(""" CREATE TABLE `aaa_spy` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `aaa_id` int(10) unsigned NOT NULL, `aaa_some_field` varchar(10) DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM """) qr.execute('drop trigger if exists aaa_after_insert') qr.execute(""" CREATE TRIGGER aaa_after_insert AFTER INSERT ON aaa FOR EACH ROW insert into aaa_spy values (null, new.id, new.some_field) """) to_be_inserted = [(None, f'aaa_{i}') for i in range(10, 20)] qr.executemany('insert into aaa values (?, ?) returning id', to_be_inserted) inserted = qr.fetchall() print(f'Should be', len(to_be_inserted), 'got', len(inserted), '. What whas inserted:', inserted) # Wrong! # What was inserted? qr.execute('select aaa_id, aaa_some_field from aaa_spy where aaa_id >= 11') # always the same data... for _id, f in qr: print(_id, f) {code} This snippet returns this: {code:text} Should be 10 got 10 . What whas inserted: [(1,), (2,), (3,), (4,), (5,), (6,), (7,), (8,), (9,), (10,)] Should be 10 got 1 . What whas inserted: [(16,)] 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 16 aaa_10 {code} |
Key | CONPY-219 | MDEV-29218 |
Affects Version/s | 1.1.3 [ 28322 ] | |
Project | MariaDB Connector/Python [ 11400 ] | MariaDB Server [ 10000 ] |
Attachment | MDEV29218.c [ 64895 ] |
Assignee | Georg Richter [ georg ] | Oleksandr Byelkin [ sanja ] |
Priority | Blocker [ 1 ] | Major [ 3 ] |
Status | Open [ 1 ] | Needs Feedback [ 10501 ] |
Affects Version/s | 10.4 [ 22408 ] | |
Affects Version/s | 10.8 [ 26121 ] |
Affects Version/s | 10.4.26 [ 27511 ] | |
Affects Version/s | 10.8.4 [ 27503 ] | |
Affects Version/s | 10.4 [ 22408 ] | |
Affects Version/s | 10.8 [ 26121 ] |
Affects Version/s | 10.6.9 [ 27507 ] |
Summary | Executemany does not work with triggers | Multirow operation with triggers does not work with binary protocol |
Status | Needs Feedback [ 10501 ] | Open [ 1 ] |
Summary | Multirow operation with triggers does not work with binary protocol | PS + array binding does not work with triggers |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Fix Version/s | 10.7 [ 24805 ] | |
Fix Version/s | 10.8 [ 26121 ] |
Fix Version/s | 10.7 [ 24805 ] |
Fix Version/s | 10.8 [ 26121 ] |
Affects Version/s | 10.11 [ 27614 ] |
Fix Version/s | 10.4 [ 22408 ] |
Moved from CONPY-219. Test case (in C) attached: While text protocol works ok, binary protocol fails.
Output:
# text protocol
# affected_rows: 3
# rows in t2: 3
# binary protocol
# affected_rows: 1
# rows in t2: 2