Alessandro Pasotti
7fa6f38689
Memory provider: roll back on errors
...
Long story short: calling provider's addFeatures
is implemented for some providers in a way that
will roll back all changes on errors, leaving
the backend storage unchanged.
Adding a QgsFeatureSink flag to control this
behavior allows certain providers to support
partial feature addition.
The issue comes from QgsVectorDataProvider::commitChanges
that is documented to leave the provider unchanged (roll
back) on any error, giving the client code the possibility
to fix errors (in the editing buffer) and re-commit.
Without a full rollback implementation in the memory
provider and after the type check introduction in this
PR we ended up with situations like this:
vl = ... an empty memory layer
self.assertTrue(vl.addFeatures([valid, invalid]))
self.assertFalse(vl.commitChanges())
self.assertEqual(vl.featureCount(), 1) <--- fails!
We actually had 3 features from vl.getFeatures():
[valid, invalid, valid] (the first from the provider
the second and third from the editing buffer).
On the other hand, QgsFeatureSink would probably assume
that addFeatures will allow partial additions.
BTW: This is for sure the longest commit message I've ever
written.
2020-06-20 04:30:18 +10:00
..
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-01 23:46:05 +02:00
2020-05-07 17:13:25 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-03-18 10:04:52 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 12:02:00 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-20 04:28:18 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 08:54:04 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 12:02:00 +02:00
2020-06-20 04:29:36 +10:00
2020-06-15 13:43:58 +10:00
2020-06-16 06:04:14 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-08 09:12:21 +10:00
2020-06-15 13:43:58 +10:00
2020-03-17 15:10:53 +10:00
2020-03-09 21:04:51 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-04-14 09:37:51 +02:00
2020-06-15 13:43:58 +10:00
2019-12-27 09:08:38 +07:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-05-21 21:58:18 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2019-09-26 12:41:04 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-11 05:30:42 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-04-03 08:21:15 +02:00
2020-03-05 18:41:35 +10:00
2019-08-16 20:44:05 +02:00
2020-06-15 13:43:58 +10:00
2019-10-15 13:17:38 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2019-11-02 15:01:59 +01:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-04-29 15:54:15 +02:00
2020-06-15 13:43:58 +10:00
2020-04-30 06:52:22 +02:00
2020-05-05 11:08:56 +02:00
2020-06-15 13:43:58 +10:00
2020-06-20 04:30:18 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2020-03-26 09:05:49 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-11 13:29:59 +10:00
2020-06-15 13:43:58 +10:00
2020-03-16 10:08:46 +10:00
2019-11-20 08:12:39 -05:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-05-09 20:22:52 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-04-28 18:19:59 +10:00
2020-01-09 17:10:30 +13:00
2020-06-15 13:43:58 +10:00
2019-11-02 15:01:59 +01:00
2020-05-21 09:05:28 +10:00
2020-06-19 08:47:23 +10:00
2020-06-11 13:29:59 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-13 16:48:38 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-01-21 11:40:42 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 12:02:00 +02:00
2020-06-15 13:43:58 +10:00
2019-10-15 13:17:38 +02:00
2019-11-07 08:17:25 +01:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-02 11:32:14 +10:00
2020-06-11 13:29:59 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-02-08 15:17:47 +10:00
2020-06-20 04:21:53 +10:00
2020-01-09 17:10:30 +13:00
2019-11-02 15:12:23 +01:00
2020-06-15 13:43:58 +10:00
2020-04-25 09:28:35 +02:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-20 04:21:53 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-03-10 19:10:52 +10:00
2020-06-15 13:43:58 +10:00
2020-03-17 10:21:30 +10:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2019-10-26 06:46:09 +10:00
2020-06-12 08:45:13 +10:00
2020-06-15 13:43:58 +10:00
2019-12-21 13:28:31 +01:00
2019-12-20 23:56:17 +01:00
2019-12-20 23:56:17 +01:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2020-06-17 08:02:49 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-05-21 21:58:18 +02:00
2020-06-15 13:43:58 +10:00
2020-06-19 08:47:23 +10:00
2020-06-11 13:29:59 +10:00
2020-06-20 04:24:55 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2019-08-29 09:08:53 +02:00
2020-06-15 13:43:58 +10:00
2020-03-18 03:02:28 +10:00
2020-01-14 19:08:20 +13:00
2020-06-15 13:43:58 +10:00
2020-03-12 20:06:25 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-05-18 14:34:45 +07:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2019-08-14 09:03:51 +10:00
2020-03-12 20:06:25 +10:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2020-06-19 12:02:00 +02:00
2020-06-15 13:43:58 +10:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2020-06-11 13:29:59 +10:00
2020-06-19 12:02:00 +02:00
2020-06-15 13:43:58 +10:00
2019-11-17 04:54:41 +10:00
2020-06-19 08:47:23 +10:00
2020-06-15 13:43:58 +10:00
2019-10-30 11:53:14 +01:00
2020-06-15 13:43:58 +10:00
2020-06-15 13:43:58 +10:00
2020-06-20 04:30:18 +10:00