Loïc Bartoletti

Results 94 comments of Loïc Bartoletti

Quick test. Today we have 23 tables without comment ``` SELECT t.schemaname, t.tablename, pg_catalog.obj_description(c.oid) FROM pg_catalog.pg_tables t LEFT JOIN pg_catalog.pg_class c ON t.tablename = c.relname WHERE t.schemaname LIKE 'qwat%' AND...

For columns ``` SELECT pg_tables.schemaname, pg_tables.tablename, pg_attribute.attname AS field, (SELECT col_description(pg_attribute.attrelid, pg_attribute.attnum) ) AS comment FROM pg_tables, pg_class JOIN pg_attribute ON pg_class.oid = pg_attribute.attrelid AND pg_attribute.attnum > 0 WHERE pg_class.relname...

It is necessary to proceed by steps. First, I think of commenting on all the tables and requiring that the new tables or views have a description. We will see...

@uclaros @vcloarec I'll merge the PR next week if there's no feedback by then.

Video to illustrate the "fix" and how it's forced to locale encoding: https://github.com/qgis/QGIS/assets/7521540/3ee490ca-74f4-4318-bd04-4c6deb8bd003

> After doing some more tests i found that it looks like snapping doesn't work on last segment of ring. Not exactly. I think there's a little confusion about what...

I think we agree together, if we rearrange vertices of polygon on layer_1, the result is more satisfying as you mentioned, and I mentioned - differently - before. However, is...

About #47595 do you have a comparison time before and with your MR? Maybe @uclaros can test on it's dataset?

@Koyaani is haven't been fixed recently? or maybe it's a duplicate issue?