Re: [HACKERS] [PATCH 05/14] Add a new relmapper.c function RelationMapFilenodeToOid that acts as a reverse of RelationMapOidToFilenode

2012-11-17 Thread Michael Paquier
On Fri, Nov 16, 2012 at 7:58 PM, Andres Freund and...@2ndquadrant.comwrote:

 Hi,

 On 2012-11-16 13:44:45 +0900, Michael Paquier wrote:
  This patch looks OK.
 
  I got 3 comments:
  1) Why changing the OID of pg_class_tblspc_relfilenode_index from 3171 to
  3455? It does not look necessary.

 Its a mismerge and should have happened in Add a new RELFILENODE
 syscache to fetch a pg_class entry via (reltablespace, relfilenode) but
 it seems I squashed the wrong two commits.
 I had originally used 3171 but that since got used up for lo_tell64...

  2) You should perhaps change the header of RelationMapFilenodeToOid so as
  not mentionning it as the opposite operation of RelationMapOidToFilenode
  but as an operation that looks for the OID of a relation based on its
  relfilenode. Both functions are opposite but independent.

 I described it as the opposite because RelationMapOidToFilenode is the
 relmappers stated goal and RelationMapFilenodeToOid is just some
 side-business.

  3) Both functions are doing similar operations. Could it be possible
  to wrap them in the same central function?

 I don't really see how without making both quite a bit more
 complicated. The amount of if's needed seems to be too large to me.

OK thanks for your answers.
As this patch only adds a new function and is not that much complicated, I
think there is no problem in committing it. The only thing to remove is the
diff in indexing.h. Could someone take care of that?
If other people have additional comments on the ability to perform a
relfileoid-reloid operation for cached maps, of course go ahead.
-- 
Michael Paquier
http://michael.otacoo.com


Re: [HACKERS] [PATCH 05/14] Add a new relmapper.c function RelationMapFilenodeToOid that acts as a reverse of RelationMapOidToFilenode

2012-11-16 Thread Andres Freund
Hi,

On 2012-11-16 13:44:45 +0900, Michael Paquier wrote:
 This patch looks OK.

 I got 3 comments:
 1) Why changing the OID of pg_class_tblspc_relfilenode_index from 3171 to
 3455? It does not look necessary.

Its a mismerge and should have happened in Add a new RELFILENODE
syscache to fetch a pg_class entry via (reltablespace, relfilenode) but
it seems I squashed the wrong two commits.
I had originally used 3171 but that since got used up for lo_tell64...

 2) You should perhaps change the header of RelationMapFilenodeToOid so as
 not mentionning it as the opposite operation of RelationMapOidToFilenode
 but as an operation that looks for the OID of a relation based on its
 relfilenode. Both functions are opposite but independent.

I described it as the opposite because RelationMapOidToFilenode is the
relmappers stated goal and RelationMapFilenodeToOid is just some
side-business.

 3) Both functions are doing similar operations. Could it be possible
 to wrap them in the same central function?

I don't really see how without making both quite a bit more
complicated. The amount of if's needed seems to be too large to me.

Thanks,

Andres Freund

--
 Andres Freund http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training  Services


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] [PATCH 05/14] Add a new relmapper.c function RelationMapFilenodeToOid that acts as a reverse of RelationMapOidToFilenode

2012-11-15 Thread Michael Paquier
Hi,

This patch looks OK.

I got 3 comments:
1) Why changing the OID of pg_class_tblspc_relfilenode_index from 3171 to
3455? It does not look necessary.
2) You should perhaps change the header of RelationMapFilenodeToOid so as
not mentionning it as the opposite operation of RelationMapOidToFilenode
but as an operation that looks for the OID of a relation based on its
relfilenode. Both functions are opposite but independent.
3) Both functions are doing similar operations. Could it be possible to
wrap them in the same central function?

On Thu, Nov 15, 2012 at 10:17 AM, Andres Freund and...@2ndquadrant.comwrote:

 ---
  src/backend/utils/cache/relmapper.c | 53
 +
  src/include/catalog/indexing.h  |  4 +--
  src/include/utils/relmapper.h   |  2 ++
  3 files changed, 57 insertions(+), 2 deletions(-)



 --
 Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
 To make changes to your subscription:
 http://www.postgresql.org/mailpref/pgsql-hackers




-- 
Michael Paquier
http://michael.otacoo.com


[HACKERS] [PATCH 05/14] Add a new relmapper.c function RelationMapFilenodeToOid that acts as a reverse of RelationMapOidToFilenode

2012-11-14 Thread Andres Freund
---
 src/backend/utils/cache/relmapper.c | 53 +
 src/include/catalog/indexing.h  |  4 +--
 src/include/utils/relmapper.h   |  2 ++
 3 files changed, 57 insertions(+), 2 deletions(-)

diff --git a/src/backend/utils/cache/relmapper.c b/src/backend/utils/cache/relmapper.c
index 6f21495..771f34d 100644
--- a/src/backend/utils/cache/relmapper.c
+++ b/src/backend/utils/cache/relmapper.c
@@ -180,6 +180,59 @@ RelationMapOidToFilenode(Oid relationId, bool shared)
 	return InvalidOid;
 }
 
+/* RelationMapFilenodeToOid
+ *
+ * Do the reverse of the normal direction of mapping done in
+ * RelationMapOidToFilenode.
+ *
+ * This is not supposed to be used during normal running but rather for
+ * information purposes when looking at the filesystem or the xlog.
+ *
+ * Returns InvalidOid if the OID is not know which can easily happen if the
+ * filenode is not of a relation that is nailed or shared or if it simply
+ * doesn't exists anywhere.
+ */
+Oid
+RelationMapFilenodeToOid(Oid filenode, bool shared)
+{
+	const RelMapFile *map;
+	int32		i;
+
+	/* If there are active updates, believe those over the main maps */
+	if (shared)
+	{
+		map = active_shared_updates;
+		for (i = 0; i  map-num_mappings; i++)
+		{
+			if (filenode == map-mappings[i].mapfilenode)
+return map-mappings[i].mapoid;
+		}
+		map = shared_map;
+		for (i = 0; i  map-num_mappings; i++)
+		{
+			if (filenode == map-mappings[i].mapfilenode)
+return map-mappings[i].mapoid;
+		}
+	}
+	else
+	{
+		map = active_local_updates;
+		for (i = 0; i  map-num_mappings; i++)
+		{
+			if (filenode == map-mappings[i].mapfilenode)
+return map-mappings[i].mapoid;
+		}
+		map = local_map;
+		for (i = 0; i  map-num_mappings; i++)
+		{
+			if (filenode == map-mappings[i].mapfilenode)
+return map-mappings[i].mapoid;
+		}
+	}
+
+	return InvalidOid;
+}
+
 /*
  * RelationMapUpdateMap
  *
diff --git a/src/include/catalog/indexing.h b/src/include/catalog/indexing.h
index c3db3ff..81811f1 100644
--- a/src/include/catalog/indexing.h
+++ b/src/include/catalog/indexing.h
@@ -106,8 +106,8 @@ DECLARE_UNIQUE_INDEX(pg_class_oid_index, 2662, on pg_class using btree(oid oid_o
 #define ClassOidIndexId  2662
 DECLARE_UNIQUE_INDEX(pg_class_relname_nsp_index, 2663, on pg_class using btree(relname name_ops, relnamespace oid_ops));
 #define ClassNameNspIndexId  2663
-DECLARE_INDEX(pg_class_tblspc_relfilenode_index, 3171, on pg_class using btree(reltablespace oid_ops, relfilenode oid_ops));
-#define ClassTblspcRelfilenodeIndexId  3171
+DECLARE_INDEX(pg_class_tblspc_relfilenode_index, 3455, on pg_class using btree(reltablespace oid_ops, relfilenode oid_ops));
+#define ClassTblspcRelfilenodeIndexId  3455
 
 DECLARE_UNIQUE_INDEX(pg_collation_name_enc_nsp_index, 3164, on pg_collation using btree(collname name_ops, collencoding int4_ops, collnamespace oid_ops));
 #define CollationNameEncNspIndexId 3164
diff --git a/src/include/utils/relmapper.h b/src/include/utils/relmapper.h
index 111a05c..4e56508 100644
--- a/src/include/utils/relmapper.h
+++ b/src/include/utils/relmapper.h
@@ -36,6 +36,8 @@ typedef struct xl_relmap_update
 
 extern Oid	RelationMapOidToFilenode(Oid relationId, bool shared);
 
+extern Oid	RelationMapFilenodeToOid(Oid relationId, bool shared);
+
 extern void RelationMapUpdateMap(Oid relationId, Oid fileNode, bool shared,
 	 bool immediate);
 

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers