This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH btree_index_atts AS ( | |
SELECT nspname, relname, reltuples, relpages, indrelid, relam, | |
regexp_split_to_table(indkey::text, ' ')::smallint AS attnum, | |
indexrelid as index_oid | |
FROM pg_index | |
JOIN pg_class ON pg_class.oid=pg_index.indexrelid | |
JOIN pg_namespace ON pg_namespace.oid = pg_class.relnamespace | |
JOIN pg_am ON pg_class.relam = pg_am.oid | |
WHERE pg_am.amname = 'btree' | |
), |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 0645ce92e738640bcfecb9add6ea16c843424543 Mon Sep 17 00:00:00 2001 | |
From: Michael Banck <[email protected]> | |
Date: Sun, 3 Nov 2013 18:43:22 +0100 | |
Subject: [PATCH] Address Adobe copyright in eps file | |
Update svn.fig according to content of svn/svn.eps.in and regenerate | |
svn/svn.eps.in via fig2dev. closes: #26 | |
--- | |
doc/progman/svn.fig | 16 +- | |
doc/progman/svn/svn.eps.in |21661 +------------------------------------------- |