1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
581.
582.
583.
584.
585.
586.
587.
588.
589.
590.
591.
592.
593.
594.
595.
596.
597.
598.
599.
600.
601.
602.
603.
604.
605.
606.
607.
608.
609.
610.
611.
612.
613.
614.
615.
616.
617.
618.
619.
620.
621.
622.
623.
624.
625.
626.
627.
628.
629.
630.
631.
632.
633.
634.
635.
636.
637.
638.
639.
640.
641.
642.
643.
644.
645.
646.
647.
648.
649.
650.
651.
652.
653.
654.
655.
656.
657.
658.
659.
660.
661.
662.
663.
664.
665.
666.
667.
668.
669.
670.
671.
672.
673.
674.
675.
676.
677.
678.
679.
680.
681.
682.
683.
684.
685.
686.
687.
688.
689.
690.
691.
692.
693.
694.
695.
696.
697.
698.
699.
700.
701.
702.
703.
704.
705.
706.
707.
708.
709.
710.
711.
712.
713.
714.
715.
716.
717.
718.
719.
720.
721.
722.
723.
724.
725.
726.
727.
728.
729.
730.
731.
732.
733.
734.
735.
736.
737.
738.
739.
740.
741.
742.
743.
744.
745.
746.
747.
748.
749.
750.
751.
752.
753.
754.
755.
756.
757.
758.
759.
760.
761.
762.
763.
764.
765.
766.
767.
768.
769.
770.
771.
772.
773.
774.
775.
776.
777.
778.
779.
780.
781.
782.
783.
784.
785.
786.
787.
788.
789.
790.
791.
792.
793.
794.
795.
796.
797.
798.
799.
800.
801.
802.
803.
804.
805.
806.
807.
808.
809.
810.
811.
812.
813.
814.
815.
816.
817.
818.
819.
820.
821.
822.
823.
824.
825.
826.
827.
828.
829.
830.
831.
832.
833.
834.
835.
836.
837.
838.
839.
840.
841.
842.
843.
844.
845.
846.
847.
848.
849.
850.
851.
852.
853.
854.
855.
856.
857.
858.
859.
860.
861.
862.
863.
864.
865.
866.
867.
868.
869.
870.
871.
872.
873.
874.
875.
876.
877.
878.
879.
880.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921.
922.
923.
924.
925.
926.
927.
928.
929.
930.
931.
932.
933.
934.
935.
936.
937.
938.
939.
940.
941.
942.
943.
944.
945.
946.
947.
948.
949.
950.
951.
952.
953.
954.
955.
956.
957.
958.
959.
960.
961.
962.
963.
964.
965.
966.
967.
968.
969.
970.
971.
972.
973.
974.
975.
976.
977.
978.
979.
980.
981.
982.
983.
984.
985.
986.
987.
988.
989.
990.
991.
992.
993.
994.
995.
996.
997.
998.
999.
1000.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
1027.
1028.
1029.
1030.
1031.
1032.
1033.
1034.
1035.
1036.
1037.
1038.
1039.
1040.
1041.
1042.
1043.
1044.
1045.
1046.
1047.
1048.
1049.
1050.
1051.
1052.
1053.
1054.
1055.
1056.
1057.
1058.
1059.
1060.
1061.
1062.
1063.
1064.
1065.
1066.
1067.
1068.
1069.
1070.
1071.
1072.
1073.
1074.
1075.
1076.
1077.
1078.
1079.
1080.
1081.
1082.
1083.
1084.
1085.
1086.
1087.
1088.
1089.
1090.
1091.
1092.
1093.
1094.
1095.
1096.
1097.
1098.
1099.
1100.
1101.
1102.
1103.
1104.
1105.
1106.
1107.
1108.
1109.
1110.
1111.
1112.
1113.
1114.
1115.
1116.
1117.
1118.
1119.
1120.
1121.
1122.
1123.
1124.
1125.
1126.
1127.
1128.
1129.
1130.
1131.
1132.
1133.
1134.
1135.
1136.
1137.
1138.
1139.
1140.
1141.
1142.
1143.
1144.
1145.
1146.
1147.
1148.
1149.
1150.
1151.
1152.
1153.
1154.
1155.
1156.
1157.
1158.
1159.
1160.
1161.
1162.
1163.
1164.
1165.
1166.
1167.
1168.
1169.
1170.
1171.
1172.
1173.
1174.
1175.
1176.
1177.
1178.
1179.
1180.
1181.
1182.
1183.
1184.
1185.
1186.
1187.
1188.
1189.
1190.
1191.
1192.
1193.
1194.
1195.
1196.
1197.
1198.
1199.
1200.
1201.
1202.
1203.
1204.
1205.
1206.
1207.
1208.
1209.
1210.
1211.
1212.
1213.
1214.
1215.
1216.
1217.
1218.
1219.
1220.
1221.
1222.
1223.
1224.
1225.
1226.
1227.
1228.
1229.
1230.
1231.
1232.
1233.
1234.
1235.
1236.
1237.
1238.
1239.
1240.
1241.
1242.
1243.
1244.
1245.
1246.
1247.
1248.
1249.
1250.
1251.
1252.
1253.
1254.
1255.
1256.
1257.
1258.
1259.
1260.
1261.
1262.
1263.
1264.
1265.
1266.
1267.
1268.
1269.
1270.
1271.
1272.
1273.
1274.
1275.
1276.
1277.
1278.
1279.
1280.
1281.
1282.
1283.
1284.
1285.
1286.
1287.
1288.
1289.
1290.
1291.
1292.
1293.
1294.
1295.
1296.
1297.
1298.
1299.
1300.
1301.
1302.
1303.
1304.
1305.
1306.
1307.
1308.
1309.
1310.
1311.
1312.
1313.
1314.
1315.
1316.
1317.
1318.
1319.
1320.
1321.
1322.
1323.
1324.
1325.
1326.
1327.
1328.
1329.
1330.
1331.
1332.
1333.
1334.
1335.
1336.
1337.
1338.
1339.
1340.
1341.
1342.
1343.
1344.
1345.
1346.
1347.
1348.
1349.
1350.
1351.
1352.
1353.
1354.
1355.
1356.
1357.
1358.
1359.
1360.
1361.
1362.
1363.
1364.
1365.
1366.
1367.
1368.
1369.
1370.
1371.
1372.
1373.
1374.
1375.
1376.
1377.
1378.
1379.
1380.
1381.
1382.
1383.
1384.
1385.
1386.
1387.
1388.
1389.
1390.
1391.
1392.
1393.
1394.
1395.
1396.
1397.
1398.
1399.
1400.
1401.
1402.
1403.
1404.
1405.
1406.
1407.
1408.
1409.
1410.
1411.
1412.
1413.
1414.
1415.
1416.
1417.
1418.
1419.
1420.
1421.
1422.
1423.
1424.
1425.
1426.
1427.
1428.
1429.
1430.
1431.
1432.
1433.
1434.
1435.
1436.
1437.
1438.
1439.
1440.
1441.
1442.
1443.
1444.
1445.
1446.
1447.
1448.
1449.
1450.
1451.
1452.
1453.
1454.
1455.
1456.
1457.
1458.
1459.
1460.
1461.
1462.
1463.
1464.
1465.
1466.
1467.
1468.
1469.
1470.
1471.
1472.
1473.
1474.
1475.
1476.
1477.
1478.
1479.
1480.
1481.
1482.
1483.
1484.
1485.
1486.
1487.
1488.
1489.
1490.
1491.
1492.
1493.
1494.
1495.
1496.
1497.
1498.
1499.
1500.
1501.
1502.
1503.
1504.
1505.
1506.
1507.
1508.
1509.
1510.
1511.
1512.
1513.
1514.
1515.
1516.
1517.
1518.
1519.
1520.
1521.
1522.
1523.
1524.
1525.
1526.
1527.
1528.
1529.
1530.
1531.
1532.
1533.
1534.
1535.
1536.
1537.
1538.
1539.
1540.
1541.
1542.
1543.
1544.
1545.
1546.
1547.
1548.
1549.
1550.
1551.
1552.
1553.
1554.
1555.
1556.
1557.
1558.
1559.
1560.
1561.
1562.
1563.
1564.
1565.
1566.
1567.
1568.
1569.
1570.
1571.
1572.
1573.
1574.
1575.
1576.
1577.
1578.
1579.
1580.
1581.
1582.
1583.
1584.
1585.
1586.
1587.
1588.
1589.
1590.
1591.
1592.
1593.
1594.
1595.
1596.
1597.
1598.
1599.
1600.
1601.
1602.
1603.
1604.
1605.
1606.
1607.
1608.
1609.
1610.
1611.
1612.
1613.
1614.
1615.
1616.
1617.
1618.
1619.
1620.
1621.
1622.
1623.
1624.
1625.
1626.
1627.
1628.
1629.
1630.
1631.
1632.
1633.
1634.
1635.
1636.
1637.
1638.
1639.
1640.
1641.
1642.
1643.
1644.
1645.
1646.
1647.
1648.
1649.
1650.
1651.
1652.
1653.
1654.
1655.
1656.
1657.
1658.
1659.
1660.
1661.
1662.
1663.
1664.
1665.
1666.
1667.
1668.
1669.
1670.
1671.
1672.
1673.
1674.
1675.
1676.
1677.
1678.
1679.
1680.
1681.
1682.
1683.
1684.
1685.
1686.
1687.
1688.
1689.
1690.
1691.
1692.
1693.
1694.
1695.
1696.
1697.
1698.
1699.
1700.
1701.
1702.
1703.
1704.
1705.
1706.
1707.
1708.
1709.
1710.
1711.
1712.
1713.
1714.
1715.
1716.
1717.
1718.
1719.
1720.
1721.
1722.
1723.
1724.
1725.
1726.
1727.
1728.
1729.
1730.
1731.
1732.
1733.
1734.
1735.
1736.
1737.
1738.
1739.
1740.
1741.
1742.
1743.
1744.
1745.
1746.
1747.
1748.
1749.
1750.
1751.
1752.
1753.
1754.
1755.
1756.
1757.
1758.
1759.
1760.
1761.
1762.
1763.
1764.
1765.
1766.
1767.
1768.
1769.
1770.
1771.
1772.
1773.
1774.
1775.
1776.
1777.
1778.
1779.
1780.
1781.
1782.
1783.
1784.
1785.
1786.
1787.
1788.
1789.
1790.
1791.
1792.
1793.
1794.
1795.
1796.
1797.
1798.
1799.
1800.
1801.
1802.
1803.
1804.
1805.
1806.
1807.
1808.
1809.
1810.
1811.
1812.
1813.
1814.
1815.
1816.
1817.
1818.
1819.
1820.
1821.
1822.
1823.
1824.
1825.
1826.
1827.
1828.
1829.
1830.
1831.
1832.
1833.
1834.
1835.
1836.
1837.
1838.
1839.
1840.
1841.
1842.
1843.
1844.
1845.
1846.
1847.
1848.
1849.
1850.
1851.
1852.
1853.
1854.
1855.
1856.
1857.
1858.
1859.
1860.
1861.
1862.
1863.
1864.
1865.
1866.
1867.
1868.
1869.
1870.
1871.
1872.
1873.
1874.
1875.
1876.
1877.
1878.
1879.
1880.
1881.
1882.
1883.
1884.
1885.
1886.
1887.
1888.
1889.
1890.
1891.
1892.
1893.
1894.
1895.
1896.
1897.
1898.
1899.
1900.
1901.
1902.
1903.
1904.
1905.
1906.
1907.
1908.
1909.
1910.
1911.
1912.
1913.
1914.
1915.
1916.
1917.
1918.
1919.
1920.
1921.
1922.
1923.
1924.
1925.
1926.
1927.
1928.
1929.
1930.
1931.
1932.
1933.
1934.
1935.
1936.
1937.
1938.
1939.
1940.
1941.
1942.
1943.
1944.
1945.
1946.
1947.
1948.
1949.
1950.
1951.
1952.
1953.
1954.
1955.
1956.
1957.
1958.
1959.
1960.
1961.
1962.
1963.
1964.
1965.
1966.
1967.
1968.
1969.
1970.
1971.
1972.
1973.
1974.
1975.
1976.
1977.
1978.
1979.
1980.
1981.
1982.
1983.
1984.
1985.
1986.
1987.
1988.
1989.
1990.
1991.
1992.
1993.
1994.
1995.
1996.
1997.
1998.
1999.
2000.
2001.
2002.
2003.
2004.
2005.
2006.
2007.
2008.
2009.
2010.
2011.
2012.
2013.
2014.
2015.
2016.
2017.
2018.
2019.
2020.
2021.
2022.
2023.
2024.
2025.
2026.
2027.
2028.
2029.
2030.
2031.
2032.
2033.
2034.
2035.
2036.
2037.
2038.
2039.
2040.
2041.
2042.
2043.
2044.
2045.
2046.
2047.
2048.
2049.
2050.
2051.
2052.
2053.
2054.
2055.
2056.
2057.
2058.
2059.
2060.
2061.
2062.
2063.
2064.
2065.
2066.
2067.
2068.
2069.
2070.
2071.
2072.
2073.
2074.
2075.
2076.
2077.
2078.
2079.
2080.
2081.
2082.
2083.
2084.
2085.
2086.
2087.
2088.
2089.
2090.
2091.
2092.
2093.
2094.
2095.
2096.
2097.
2098.
2099.
2100.
2101.
2102.
2103.
2104.
2105.
2106.
2107.
2108.
2109.
2110.
2111.
2112.
2113.
2114.
2115.
2116.
2117.
2118.
2119.
2120.
2121.
2122.
2123.
2124.
2125.
2126.
2127.
2128.
2129.
2130.
2131.
2132.
2133.
2134.
2135.
2136.
2137.
2138.
2139.
2140.
2141.
2142.
2143.
2144.
2145.
2146.
2147.
2148.
2149.
2150.
2151.
2152.
2153.
2154.
2155.
2156.
2157.
2158.
2159.
2160.
2161.
2162.
2163.
2164.
2165.
2166.
2167.
2168.
2169.
2170.
2171.
2172.
2173.
2174.
2175.
2176.
2177.
2178.
2179.
2180.
2181.
2182.
2183.
2184.
2185.
2186.
2187.
2188.
2189.
I:\PSQL\bin\pg_restore.exe -i -h localhost -p 5432 -U postgres -d "SQ" -v "F:\123.backup"
pg_restore: connecting to database for restore
pg_restore: [archiver (db)] Error while INITIALIZING:
pg_restore: [archiver (db)] could not execute query: ERROR: invalid byte sequence for encoding "UTF8": 0xccee
HINT: This error can also happen if the byte sequence does not match the encoding expected by the server, which is controlled by "client_encoding".
Command was: --
-- PostgreSQL database dump
--
-- Started on 2008-09-15 14:09:17 Московское время (лето)
SET client_encoding = 'UTF8';
pg_restore: creating SCHEMA public
pg_restore: creating COMMENT SCHEMA public
pg_restore: creating PROCEDURAL LANGUAGE plpgsql
pg_restore: [archiver (db)] Error while PROCESSING TOC:
pg_restore: [archiver (db)] Error from TOC entry 430 ; 2612 16386 PROCEDURAL LANGUAGE plpgsql
pg_restore: [archiver (db)] could not execute query: ERROR: language "plpgsql" already exists
Command was: CREATE PROCEDURAL LANGUAGE plpgsql;
pg_restore: creating FUNCTION mchar_in(cstring)
pg_restore: [archiver (db)] Error from TOC entry 25 ; 1255 16413 FUNCTION mchar_in(cstring) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_in" already exists with same argument types
Command was: CREATE FUNCTION mchar_in(cstring) RETURNS mchar
AS '$libdir/mchar', 'mchar_in'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mchar_out(mchar)
pg_restore: [archiver (db)] Error from TOC entry 26 ; 1255 16414 FUNCTION mchar_out(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_out" already exists with same argument types
Command was: CREATE FUNCTION mchar_out(mchar) RETURNS cstring
AS '$libdir/mchar', 'mchar_out'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mchar_recv(internal)
pg_restore: [archiver (db)] Error from TOC entry 28 ; 1255 16416 FUNCTION mchar_recv(internal) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_recv" already exists with same argument types
Command was: CREATE FUNCTION mchar_recv(internal) RETURNS mchar
AS '$libdir/mchar', 'mchar_recv'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mchar_send(mchar)
pg_restore: [archiver (db)] Error from TOC entry 27 ; 1255 16415 FUNCTION mchar_send(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_send" already exists with same argument types
Command was: CREATE FUNCTION mchar_send(mchar) RETURNS bytea
AS '$libdir/mchar', 'mchar_send'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating TYPE mchar
pg_restore: [archiver (db)] Error from TOC entry 415 ; 1247 16412 TYPE mchar postgres
pg_restore: [archiver (db)] could not execute query: ERROR: type "mchar" already exists
Command was: CREATE TYPE mchar (
INTERNALLENGTH = variable,
INPUT = mchar_in,
OUTPUT = mchar_out,
RECEIVE = mchar_recv,
...
pg_restore: creating FUNCTION mvarchar_in(cstring)
pg_restore: [archiver (db)] Error from TOC entry 30 ; 1255 16421 FUNCTION mvarchar_in(cstring) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_in" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_in(cstring) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_in'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mvarchar_out(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 31 ; 1255 16422 FUNCTION mvarchar_out(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_out" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_out(mvarchar) RETURNS cstring
AS '$libdir/mchar', 'mvarchar_out'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mvarchar_recv(internal)
pg_restore: [archiver (db)] Error from TOC entry 33 ; 1255 16424 FUNCTION mvarchar_recv(internal) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_recv" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_recv(internal) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_recv'
LANGUAGE c IMMUTABLE ST...
pg_restore: creating FUNCTION mvarchar_send(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 32 ; 1255 16423 FUNCTION mvarchar_send(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_send" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_send(mvarchar) RETURNS bytea
AS '$libdir/mchar', 'mvarchar_send'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating TYPE mvarchar
pg_restore: [archiver (db)] Error from TOC entry 417 ; 1247 16420 TYPE mvarchar postgres
pg_restore: [archiver (db)] could not execute query: ERROR: type "mvarchar" already exists
Command was: CREATE TYPE mvarchar (
INTERNALLENGTH = variable,
INPUT = mvarchar_in,
OUTPUT = mvarchar_out,
RECEIVE = mvar...
pg_restore: creating FUNCTION binrowver(integer)
pg_restore: [archiver (db)] Error from TOC entry 24 ; 1255 16411 FUNCTION binrowver(integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "binrowver" already exists with same argument types
Command was: CREATE FUNCTION binrowver(p1 integer) RETURNS bytea
AS $$
DECLARE
bytearea BYTEA;
BEGIN
bytearea := SET_BYTE('\\000\...
pg_restore: creating FUNCTION btrim(bytea, integer)
pg_restore: [archiver (db)] Error from TOC entry 23; 1255 16410 FUNCTION btrim(bytea, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "btrim" already exists with same argument types
Command was: CREATE FUNCTION btrim(bdata bytea, blen integer) RETURNS bytea
AS $$
DECLARE
ln int;
res bytea;
BEGI...
pg_restore: creating FUNCTION datediff(character varying, timestamp without time zone, timestamp without time zone)
pg_restore: [archiver (db)] Error from TOC entry 18; 1255 16405 FUNCTION datediff(character varying, timestamp without time zone, timestamp without time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "datediff" already exists with same argument types
Command was: CREATE FUNCTION datediff(character varying, timestamp without time zone, timestamp without time zone) RETURNS integer
AS...
pg_restore: creating FUNCTION fasttruncate(text)
pg_restore: [archiver (db)] Error from TOC entry 184; 1255 16705 FUNCTION fasttruncate(text) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fasttruncate" already exists with same argument types
Command was: CREATE FUNCTION fasttruncate(text) RETURNS void
AS '$libdir/fasttrun', 'fasttruncate'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION fullhash_abstime(abstime)
pg_restore: [archiver (db)] Error from TOC entry 157; 1255 16650 FUNCTION fullhash_abstime(abstime) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_abstime" already exists with same argument types
Command was: CREATE FUNCTION fullhash_abstime(abstime) RETURNS integer
AS '$libdir/fulleq', 'fullhash_abstime'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_bool(boolean)
pg_restore: [archiver (db)] Error from TOC entry 127; 1255 16590 FUNCTION fullhash_bool(boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_bool" already exists with same argument types
Command was: CREATE FUNCTION fullhash_bool(boolean) RETURNS integer
AS '$libdir/fulleq', 'fullhash_bool'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_bytea(bytea)
pg_restore: [archiver (db)] Error from TOC entry 129; 1255 16594 FUNCTION fullhash_bytea(bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_bytea" already exists with same argument types
Command was: CREATE FUNCTION fullhash_bytea(bytea) RETURNS integer
AS '$libdir/fulleq', 'fullhash_bytea'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_char(character)
pg_restore: [archiver (db)] Error from TOC entry 131; 1255 16598 FUNCTION fullhash_char(character) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_char" already exists with same argument types
Command was: CREATE FUNCTION fullhash_char(character) RETURNS integer
AS '$libdir/fulleq', 'fullhash_char'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_cid(cid)
pg_restore: [archiver (db)] Error from TOC entry 149; 1255 16634 FUNCTION fullhash_cid(cid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_cid" already exists with same argument types
Command was: CREATE FUNCTION fullhash_cid(cid) RETURNS integer
AS '$libdir/fulleq', 'fullhash_cid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_cidr(cidr)
pg_restore: [archiver (db)] Error from TOC entry 165; 1255 16666 FUNCTION fullhash_cidr(cidr) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_cidr" already exists with same argument types
Command was: CREATE FUNCTION fullhash_cidr(cidr) RETURNS integer
AS '$libdir/fulleq', 'fullhash_cidr'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_date(date)
pg_restore: [archiver (db)] Error from TOC entry 169; 1255 16674 FUNCTION fullhash_date(date) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_date" already exists with same argument types
Command was: CREATE FUNCTION fullhash_date(date) RETURNS integer
AS '$libdir/fulleq', 'fullhash_date'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_float4(real)
pg_restore: [archiver (db)] Error from TOC entry 153; 1255 16642 FUNCTION fullhash_float4(real) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_float4" already exists with same argument types
Command was: CREATE FUNCTION fullhash_float4(real) RETURNS integer
AS '$libdir/fulleq', 'fullhash_float4'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_float8(double precision)
pg_restore: [archiver (db)] Error from TOC entry 155; 1255 16646 FUNCTION fullhash_float8(double precision) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_float8" already exists with same argument types
Command was: CREATE FUNCTION fullhash_float8(double precision) RETURNS integer
AS '$libdir/fulleq', 'fullhash_float8'
LANGUAGE c ...
pg_restore: creating FUNCTION fullhash_inet(inet)
pg_restore: [archiver (db)] Error from TOC entry 163; 1255 16662 FUNCTION fullhash_inet(inet) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_inet" already exists with same argument types
Command was: CREATE FUNCTION fullhash_inet(inet) RETURNS integer
AS '$libdir/fulleq', 'fullhash_inet'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_int2(smallint)
pg_restore: [archiver (db)] Error from TOC entry 137; 1255 16610 FUNCTION fullhash_int2(smallint) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_int2" already exists with same argument types
Command was: CREATE FUNCTION fullhash_int2(smallint) RETURNS integer
AS '$libdir/fulleq', 'fullhash_int2'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_int2vector(int2vector)
pg_restore: [archiver (db)] Error from TOC entry 139; 1255 16614 FUNCTION fullhash_int2vector(int2vector) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_int2vector" already exists with same argument types
Command was: CREATE FUNCTION fullhash_int2vector(int2vector) RETURNS integer
AS '$libdir/fulleq', 'fullhash_int2vector'
LANGUAGE ...
pg_restore: creating FUNCTION fullhash_int4(integer)
pg_restore: [archiver (db)] Error from TOC entry 141; 1255 16618 FUNCTION fullhash_int4(integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_int4" already exists with same argument types
Command was: CREATE FUNCTION fullhash_int4(integer) RETURNS integer
AS '$libdir/fulleq', 'fullhash_int4'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_int8(bigint)
pg_restore: [archiver (db)] Error from TOC entry 135; 1255 16606 FUNCTION fullhash_int8(bigint) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_int8" already exists with same argument types
Command was: CREATE FUNCTION fullhash_int8(bigint) RETURNS integer
AS '$libdir/fulleq', 'fullhash_int8'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_interval(interval)
pg_restore: [archiver (db)] Error from TOC entry 177; 1255 16690 FUNCTION fullhash_interval(interval) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_interval" already exists with same argument types
Command was: CREATE FUNCTION fullhash_interval(interval) RETURNS integer
AS '$libdir/fulleq', 'fullhash_interval'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION fullhash_macaddr(macaddr)
pg_restore: [archiver (db)] Error from TOC entry 161; 1255 16658 FUNCTION fullhash_macaddr(macaddr) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_macaddr" already exists with same argument types
Command was: CREATE FUNCTION fullhash_macaddr(macaddr) RETURNS integer
AS '$libdir/fulleq', 'fullhash_macaddr'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_mchar(mchar)
pg_restore: [archiver (db)] Error from TOC entry 181; 1255 16698 FUNCTION fullhash_mchar(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_mchar" already exists with same argument types
Command was: CREATE FUNCTION fullhash_mchar(mchar) RETURNS integer
AS '$libdir/mchar', 'fullhash_mchar'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_mvarchar(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 183; 1255 16702 FUNCTION fullhash_mvarchar(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_mvarchar" already exists with same argument types
Command was: CREATE FUNCTION fullhash_mvarchar(mvarchar) RETURNS integer
AS '$libdir/mchar', 'fullhash_mvarchar'
LANGUAGE c IMMUT...
pg_restore: creating FUNCTION fullhash_name(name)
pg_restore: [archiver (db)] Error from TOC entry 133; 1255 16602 FUNCTION fullhash_name(name) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_name" already exists with same argument types
Command was: CREATE FUNCTION fullhash_name(name) RETURNS integer
AS '$libdir/fulleq', 'fullhash_name'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_oid(oid)
pg_restore: [archiver (db)] Error from TOC entry 145; 1255 16626 FUNCTION fullhash_oid(oid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_oid" already exists with same argument types
Command was: CREATE FUNCTION fullhash_oid(oid) RETURNS integer
AS '$libdir/fulleq', 'fullhash_oid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_oidvector(oidvector)
pg_restore: [archiver (db)] Error from TOC entry 151; 1255 16638 FUNCTION fullhash_oidvector(oidvector) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_oidvector" already exists with same argument types
Command was: CREATE FUNCTION fullhash_oidvector(oidvector) RETURNS integer
AS '$libdir/fulleq', 'fullhash_oidvector'
LANGUAGE c I...
pg_restore: creating FUNCTION fullhash_reltime(reltime)
pg_restore: [archiver (db)] Error from TOC entry 159; 1255 16654 FUNCTION fullhash_reltime(reltime) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_reltime" already exists with same argument types
Command was: CREATE FUNCTION fullhash_reltime(reltime) RETURNS integer
AS '$libdir/fulleq', 'fullhash_reltime'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_text(text)
pg_restore: [archiver (db)] Error from TOC entry 143; 1255 16622 FUNCTION fullhash_text(text) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_text" already exists with same argument types
Command was: CREATE FUNCTION fullhash_text(text) RETURNS integer
AS '$libdir/fulleq', 'fullhash_text'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION fullhash_time(time without time zone)
pg_restore: [archiver (db)] Error from TOC entry 171; 1255 16678 FUNCTION fullhash_time(time without time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_time" already exists with same argument types
Command was: CREATE FUNCTION fullhash_time(time without time zone) RETURNS integer
AS '$libdir/fulleq', 'fullhash_time'
LANGUAGE ...
pg_restore: creating FUNCTION fullhash_timestamp(timestamp without time zone)
pg_restore: [archiver (db)] Error from TOC entry 173; 1255 16682 FUNCTION fullhash_timestamp(timestamp without time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_timestamp" already exists with same argument types
Command was: CREATE FUNCTION fullhash_timestamp(timestamp without time zone) RETURNS integer
AS '$libdir/fulleq', 'fullhash_timestamp...
pg_restore: creating FUNCTION fullhash_timestamptz(timestamp with time zone)
pg_restore: [archiver (db)] Error from TOC entry 175 ; 1255 16686 FUNCTION fullhash_timestamptz(timestamp with time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_timestamptz" already exists with same argument types
Command was: CREATE FUNCTION fullhash_timestamptz(timestamp with time zone) RETURNS integer
AS '$libdir/fulleq', 'fullhash_timestampt...
pg_restore: creating FUNCTION fullhash_timetz(time with time zone)
pg_restore: [archiver (db)] Error from TOC entry 179; 1255 16694 FUNCTION fullhash_timetz(time with time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_timetz" already exists with same argument types
Command was: CREATE FUNCTION fullhash_timetz(time with time zone) RETURNS integer
AS '$libdir/fulleq', 'fullhash_timetz'
LANGUAGE...
pg_restore: creating FUNCTION fullhash_varchar(character varying)
pg_restore: [archiver (db)] Error from TOC entry 167; 1255 16670 FUNCTION fullhash_varchar(character varying) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_varchar" already exists with same argument types
Command was: CREATE FUNCTION fullhash_varchar(character varying) RETURNS integer
AS '$libdir/fulleq', 'fullhash_varchar'
LANGUAGE...
pg_restore: creating FUNCTION fullhash_xid(xid)
pg_restore: [archiver (db)] Error from TOC entry 147; 1255 16630 FUNCTION fullhash_xid(xid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "fullhash_xid" already exists with same argument types
Command was: CREATE FUNCTION fullhash_xid(xid) RETURNS integer
AS '$libdir/fulleq', 'fullhash_xid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_abstime(abstime, abstime)
pg_restore: [archiver (db)] Error from TOC entry 156; 1255 16649 FUNCTION isfulleq_abstime(abstime, abstime) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_abstime" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_abstime(abstime, abstime) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_abstime'
LANGUAGE ...
pg_restore: creating FUNCTION isfulleq_bool(boolean, boolean)
pg_restore: [archiver (db)] Error from TOC entry 126; 1255 16589 FUNCTION isfulleq_bool(boolean, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_bool" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_bool(boolean, boolean) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_bool'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION isfulleq_bytea(bytea, bytea)
pg_restore: [archiver (db)] Error from TOC entry 128; 1255 16593 FUNCTION isfulleq_bytea(bytea, bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_bytea" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_bytea(bytea, bytea) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_bytea'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION isfulleq_char(character, character)
pg_restore: [archiver (db)] Error from TOC entry 130; 1255 16597 FUNCTION isfulleq_char(character, character) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_char" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_char(character, character) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_char'
LANGUAGE c ...
pg_restore: creating FUNCTION isfulleq_cid(cid, cid)
pg_restore: [archiver (db)] Error from TOC entry 148; 1255 16633 FUNCTION isfulleq_cid(cid, cid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_cid" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_cid(cid, cid) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_cid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_cidr(cidr, cidr)
pg_restore: [archiver (db)] Error from TOC entry 164; 1255 16665 FUNCTION isfulleq_cidr(cidr, cidr) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_cidr" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_cidr(cidr, cidr) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_cidr'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_date(date, date)
pg_restore: [archiver (db)] Error from TOC entry 168; 1255 16673 FUNCTION isfulleq_date(date, date) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_date" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_date(date, date) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_date'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_float4(real, real)
pg_restore: [archiver (db)] Error from TOC entry 152; 1255 16641 FUNCTION isfulleq_float4(real, real) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_float4" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_float4(real, real) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_float4'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION isfulleq_float8(double precision, double precision)
pg_restore: [archiver (db)] Error from TOC entry 154; 1255 16645 FUNCTION isfulleq_float8(double precision, double precision) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_float8" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_float8(double precision, double precision) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_float...
pg_restore: creating FUNCTION isfulleq_inet(inet, inet)
pg_restore: [archiver (db)] Error from TOC entry 162 ; 1255 16661 FUNCTION isfulleq_inet(inet, inet) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_inet" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_inet(inet, inet) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_inet'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_int2(smallint, smallint)
pg_restore: [archiver (db)] Error from TOC entry 136 ; 1255 16609 FUNCTION isfulleq_int2(smallint, smallint) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_int2" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_int2(smallint, smallint) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_int2'
LANGUAGE c IM...
pg_restore: creating FUNCTION isfulleq_int2vector(int2vector, int2vector)
pg_restore: [archiver (db)] Error from TOC entry 138 ; 1255 16613 FUNCTION isfulleq_int2vector(int2vector, int2vector) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_int2vector" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_int2vector(int2vector, int2vector) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_int2vector'
...
pg_restore: creating FUNCTION isfulleq_int4(integer, integer)
pg_restore: [archiver (db)] Error from TOC entry 140 ; 1255 16617 FUNCTION isfulleq_int4(integer, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_int4" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_int4(integer, integer) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_int4'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION isfulleq_int8(bigint, bigint)
pg_restore: [archiver (db)] Error from TOC entry 134 ; 1255 16605 FUNCTION isfulleq_int8(bigint, bigint) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_int8" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_int8(bigint, bigint) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_int8'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION isfulleq_interval(interval, interval)
pg_restore: [archiver (db)] Error from TOC entry 176 ; 1255 16689 FUNCTION isfulleq_interval(interval, interval) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_interval" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_interval(interval, interval) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_interval'
LANGU...
pg_restore: creating FUNCTION isfulleq_macaddr(macaddr, macaddr)
pg_restore: [archiver (db)] Error from TOC entry 160 ; 1255 16657 FUNCTION isfulleq_macaddr(macaddr, macaddr) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_macaddr" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_macaddr(macaddr, macaddr) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_macaddr'
LANGUAGE ...
pg_restore: creating FUNCTION isfulleq_mchar(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 180 ; 1255 16697 FUNCTION isfulleq_mchar(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_mchar" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_mchar(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'isfulleq_mchar'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_mvarchar(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 182 ; 1255 16701 FUNCTION isfulleq_mvarchar(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_mvarchar" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_mvarchar(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'isfulleq_mvarchar'
LANGUA...
pg_restore: creating FUNCTION isfulleq_name(name, name)
pg_restore: [archiver (db)] Error from TOC entry 132 ; 1255 16601 FUNCTION isfulleq_name(name, name) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_name" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_name(name, name) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_name'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_oid(oid, oid)
pg_restore: [archiver (db)] Error from TOC entry 144 ; 1255 16625 FUNCTION isfulleq_oid(oid, oid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_oid" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_oid(oid, oid) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_oid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_oidvector(oidvector, oidvector)
pg_restore: [archiver (db)] Error from TOC entry 150 ; 1255 16637 FUNCTION isfulleq_oidvector(oidvector, oidvector) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_oidvector" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_oidvector(oidvector, oidvector) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_oidvector'
L...
pg_restore: creating FUNCTION isfulleq_reltime(reltime, reltime)
pg_restore: [archiver (db)] Error from TOC entry 158 ; 1255 16653 FUNCTION isfulleq_reltime(reltime, reltime) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_reltime" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_reltime(reltime, reltime) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_reltime'
LANGUAGE ...
pg_restore: creating FUNCTION isfulleq_text(text, text)
pg_restore: [archiver (db)] Error from TOC entry 142 ; 1255 16621 FUNCTION isfulleq_text(text, text) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_text" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_text(text, text) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_text'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION isfulleq_time(time without time zone, time without time zone)
pg_restore: [archiver (db)] Error from TOC entry 170 ; 1255 16677 FUNCTION isfulleq_time(time without time zone, time without time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_time" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_time(time without time zone, time without time zone) RETURNS boolean
AS '$libdir/fulleq', 'isfu...
pg_restore: creating FUNCTION isfulleq_timestamp(timestamp without time zone, timestamp without time zone)
pg_restore: [archiver (db)] Error from TOC entry 172; 1255 16681 FUNCTION isfulleq_timestamp(timestamp without time zone, timestamp without time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_timestamp" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_timestamp(timestamp without time zone, timestamp without time zone) RETURNS boolean
AS '$libdir...
pg_restore: creating FUNCTION isfulleq_timestamptz(timestamp with time zone, timestamp with time zone)
pg_restore: [archiver (db)] Error from TOC entry 174 ; 1255 16685 FUNCTION isfulleq_timestamptz(timestamp with time zone, timestamp with time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_timestamptz" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_timestamptz(timestamp with time zone, timestamp with time zone) RETURNS boolean
AS '$libdir/ful...
pg_restore: creating FUNCTION isfulleq_timetz(time with time zone, time with time zone)
pg_restore: [archiver (db)] Error from TOC entry 178; 1255 16693 FUNCTION isfulleq_timetz(time with time zone, time with time zone) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_timetz" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_timetz(time with time zone, time with time zone) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq...
pg_restore: creating FUNCTION isfulleq_varchar(character varying, character varying)
pg_restore: [archiver (db)] Error from TOC entry 166 ; 1255 16669 FUNCTION isfulleq_varchar(character varying, character varying) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_varchar" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_varchar(character varying, character varying) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_va...
pg_restore: creating FUNCTION isfulleq_xid(xid, xid)
pg_restore: [archiver (db)] Error from TOC entry 146; 1255 16629 FUNCTION isfulleq_xid(xid, xid) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "isfulleq_xid" already exists with same argument types
Command was: CREATE FUNCTION isfulleq_xid(xid, xid) RETURNS boolean
AS '$libdir/fulleq', 'isfulleq_xid'
LANGUAGE c IMMUTABLE;
pg_restore: creating FUNCTION length(mchar)
pg_restore: [archiver (db)] Error from TOC entry 35; 1255 16428 FUNCTION length(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "length" already exists with same argument types
Command was: CREATE FUNCTION length(mchar) RETURNS integer
AS '$libdir/mchar', 'mchar_length'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION length(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 45; 1255 16443 FUNCTION length(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "length" already exists with same argument types
Command was: CREATE FUNCTION length(mvarchar) RETURNS integer
AS '$libdir/mchar', 'mvarchar_length'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION like_escape(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 51; 1255 16450 FUNCTION like_escape(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "like_escape" already exists with same argument types
Command was: CREATE FUNCTION like_escape(mvarchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_like_escape'
LANGUAGE...
pg_restore: creating FUNCTION lower(mchar)
pg_restore: [archiver (db)] Error from TOC entry 37; 1255 16430 FUNCTION lower(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "lower" already exists with same argument types
Command was: CREATE FUNCTION lower(mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_lower'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION lower(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 47; 1255 16445 FUNCTION lower(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "lower" already exists with same argument types
Command was: CREATE FUNCTION lower(mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_lower'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mc_mv_case_cmp(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 95; 1255 16534 FUNCTION mc_mv_case_cmp(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_cmp" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_cmp(mchar, mvarchar) RETURNS integer
AS '$libdir/mchar', 'mc_mv_case_cmp'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_case_eq(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 96; 1255 16535 FUNCTION mc_mv_case_eq(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_eq" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_eq(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_eq'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_case_ge(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 101; 1255 16540 FUNCTION mc_mv_case_ge(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_ge" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_ge(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_ge'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_case_gt(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 100; 1255 16539 FUNCTION mc_mv_case_gt(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_gt" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_gt(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_gt'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_case_le(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 99; 1255 16538 FUNCTION mc_mv_case_le(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_le" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_le(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_le'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_case_lt(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 98; 1255 16537 FUNCTION mc_mv_case_lt(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_lt" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_lt(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_lt'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_case_ne(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 97; 1255 16536 FUNCTION mc_mv_case_ne(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_case_ne" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_case_ne(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_case_ne'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mc_mv_icase_cmp(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 88; 1255 16515 FUNCTION mc_mv_icase_cmp(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_cmp" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_cmp(mchar, mvarchar) RETURNS integer
AS '$libdir/mchar', 'mc_mv_icase_cmp'
LANGUAGE c IM...
pg_restore: creating FUNCTION mc_mv_icase_eq(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 89; 1255 16516 FUNCTION mc_mv_icase_eq(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_eq" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_eq(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_eq'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_icase_ge(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 94; 1255 16521 FUNCTION mc_mv_icase_ge(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_ge" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_ge(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_ge'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_icase_gt(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 93; 1255 16520 FUNCTION mc_mv_icase_gt(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_gt" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_gt(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_gt'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_icase_le(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 92; 1255 16519 FUNCTION mc_mv_icase_le(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_le" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_le(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_le'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_icase_lt(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 91; 1255 16518 FUNCTION mc_mv_icase_lt(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_lt" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_lt(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_lt'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mc_mv_icase_ne(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 90; 1255 16517 FUNCTION mc_mv_icase_ne(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mc_mv_icase_ne" already exists with same argument types
Command was: CREATE FUNCTION mc_mv_icase_ne(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mc_mv_icase_ne'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mchar(mchar, integer, boolean)
pg_restore: [archiver (db)] Error from TOC entry 29; 1255 16418 FUNCTION mchar(mchar, integer, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar" already exists with same argument types
Command was: CREATE FUNCTION mchar(mchar, integer, boolean) RETURNS mchar
AS '$libdir/mchar', 'mchar'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mchar_case_cmp(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 67; 1255 16476 FUNCTION mchar_case_cmp(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_cmp" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_cmp(mchar, mchar) RETURNS integer
AS '$libdir/mchar', 'mchar_case_cmp'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_case_eq(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 68; 1255 16477 FUNCTION mchar_case_eq(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_eq" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_eq(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_eq'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_case_ge(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 73; 1255 16482 FUNCTION mchar_case_ge(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_ge" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_ge(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_ge'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_case_gt(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 72; 1255 16481 FUNCTION mchar_case_gt(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_gt" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_gt(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_gt'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_case_le(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 71; 1255 16480 FUNCTION mchar_case_le(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_le" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_le(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_le'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_case_lt(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 70; 1255 16479 FUNCTION mchar_case_lt(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_lt" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_lt(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_lt'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_case_ne(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 69; 1255 16478 FUNCTION mchar_case_ne(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_case_ne" already exists with same argument types
Command was: CREATE FUNCTION mchar_case_ne(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_case_ne'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_concat(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 39; 1255 16432 FUNCTION mchar_concat(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_concat" already exists with same argument types
Command was: CREATE FUNCTION mchar_concat(mchar, mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_concat'
LANGUAGE c IMMUTABLE STR...
pg_restore: creating FUNCTION mchar_greaterstring(internal)
pg_restore: [archiver (db)] Error from TOC entry 125; 1255 16588 FUNCTION mchar_greaterstring(internal) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_greaterstring" already exists with same argument types
Command was: CREATE FUNCTION mchar_greaterstring(internal) RETURNS internal
AS '$libdir/mchar', 'mchar_greaterstring'
LANGUAGE c ...
pg_restore: creating FUNCTION mchar_hash(mchar)
pg_restore: [archiver (db)] Error from TOC entry 38; 1255 16431 FUNCTION mchar_hash(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_hash" already exists with same argument types
Command was: CREATE FUNCTION mchar_hash(mchar) RETURNS integer
AS '$libdir/mchar', 'mchar_hash'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION mchar_icase_cmp(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 60; 1255 16463 FUNCTION mchar_icase_cmp(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_cmp" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_cmp(mchar, mchar) RETURNS integer
AS '$libdir/mchar', 'mchar_icase_cmp'
LANGUAGE c IMMUT...
pg_restore: creating FUNCTION mchar_icase_eq(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 61; 1255 16464 FUNCTION mchar_icase_eq(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_eq" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_eq(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_eq'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_icase_ge(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 66; 1255 16469 FUNCTION mchar_icase_ge(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_ge" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_ge(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_ge'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_icase_gt(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 65; 1255 16468 FUNCTION mchar_icase_gt(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_gt" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_gt(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_gt'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_icase_le(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 64; 1255 16467 FUNCTION mchar_icase_le(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_le" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_le(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_le'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_icase_lt(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 63; 1255 16466 FUNCTION mchar_icase_lt(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_lt" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_lt(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_lt'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_icase_ne(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 62; 1255 16465 FUNCTION mchar_icase_ne(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_icase_ne" already exists with same argument types
Command was: CREATE FUNCTION mchar_icase_ne(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_icase_ne'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION mchar_larger(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 120; 1255 16575 FUNCTION mchar_larger(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_larger" already exists with same argument types
Command was: CREATE FUNCTION mchar_larger(mchar, mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_larger'
LANGUAGE c IMMUTABLE STR...
pg_restore: creating FUNCTION mchar_like(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 40; 1255 16434 FUNCTION mchar_like(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_like" already exists with same argument types
Command was: CREATE FUNCTION mchar_like(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_like'
LANGUAGE c IMMUTABLE ST...
pg_restore: creating FUNCTION mchar_mvarchar(mchar, integer, boolean)
pg_restore: [archiver (db)] Error from TOC entry 119; 1255 16573 FUNCTION mchar_mvarchar(mchar, integer, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_mvarchar" already exists with same argument types
Command was: CREATE FUNCTION mchar_mvarchar(mchar, integer, boolean) RETURNS mvarchar
AS '$libdir/mchar', 'mchar_mvarchar'
LANGUA...
pg_restore: creating FUNCTION mchar_mvarchar_concat(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 116; 1255 16567 FUNCTION mchar_mvarchar_concat(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_mvarchar_concat" already exists with same argument types
Command was: CREATE FUNCTION mchar_mvarchar_concat(mchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mchar_mvarchar_concat'
...
pg_restore: creating FUNCTION mchar_notlike(mchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 41; 1255 16435 FUNCTION mchar_notlike(mchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_notlike" already exists with same argument types
Command was: CREATE FUNCTION mchar_notlike(mchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_notlike'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mchar_pattern_fixed_prefix(internal, internal, internal, internal)
pg_restore: [archiver (db)] Error from TOC entry 124; 1255 16587 FUNCTION mchar_pattern_fixed_prefix(internal, internal, internal, internal) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_pattern_fixed_prefix" already exists with same argument types
Command was: CREATE FUNCTION mchar_pattern_fixed_prefix(internal, internal, internal, internal) RETURNS integer
AS '$libdir/mchar', '...
pg_restore: creating FUNCTION mchar_regexeq(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 42 ; 1255 16438 FUNCTION mchar_regexeq(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_regexeq" already exists with same argument types
Command was: CREATE FUNCTION mchar_regexeq(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_regexeq'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_regexne(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 43 ; 1255 16439 FUNCTION mchar_regexne(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_regexne" already exists with same argument types
Command was: CREATE FUNCTION mchar_regexne(mchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mchar_regexne'
LANGUAGE c IMMUTABLE...
pg_restore: creating FUNCTION mchar_smaller(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 121 ; 1255 16577 FUNCTION mchar_smaller(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mchar_smaller" already exists with same argument types
Command was: CREATE FUNCTION mchar_smaller(mchar, mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_smaller'
LANGUAGE c IMMUTABLE S...
pg_restore: creating FUNCTION mv_mc_case_cmp(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 109 ; 1255 16560 FUNCTION mv_mc_case_cmp(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_cmp" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_cmp(mvarchar, mchar) RETURNS integer
AS '$libdir/mchar', 'mv_mc_case_cmp'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_case_eq(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 110 ; 1255 16561 FUNCTION mv_mc_case_eq(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_eq" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_eq(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_eq'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_case_ge(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 115 ; 1255 16566 FUNCTION mv_mc_case_ge(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_ge" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_ge(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_ge'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_case_gt(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 114 ; 1255 16565 FUNCTION mv_mc_case_gt(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_gt" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_gt(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_gt'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_case_le(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 113 ; 1255 16564 FUNCTION mv_mc_case_le(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_le" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_le(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_le'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_case_lt(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 112 ; 1255 16563 FUNCTION mv_mc_case_lt(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_lt" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_lt(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_lt'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_case_ne(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 111 ; 1255 16562 FUNCTION mv_mc_case_ne(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_case_ne" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_case_ne(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_case_ne'
LANGUAGE c IMMUTA...
pg_restore: creating FUNCTION mv_mc_icase_cmp(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 102 ; 1255 16553 FUNCTION mv_mc_icase_cmp(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_cmp" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_cmp(mvarchar, mchar) RETURNS integer
AS '$libdir/mchar', 'mv_mc_icase_cmp'
LANGUAGE c IM...
pg_restore: creating FUNCTION mv_mc_icase_eq(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 103 ; 1255 16554 FUNCTION mv_mc_icase_eq(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_eq" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_eq(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_eq'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_icase_ge(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 108 ; 1255 16559 FUNCTION mv_mc_icase_ge(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_ge" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_ge(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_ge'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_icase_gt(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 107 ; 1255 16558 FUNCTION mv_mc_icase_gt(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_gt" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_gt(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_gt'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_icase_le(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 106 ; 1255 16557 FUNCTION mv_mc_icase_le(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_le" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_le(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_le'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_icase_lt(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 105 ; 1255 16556 FUNCTION mv_mc_icase_lt(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_lt" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_lt(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_lt'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mv_mc_icase_ne(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 104 ; 1255 16555 FUNCTION mv_mc_icase_ne(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mv_mc_icase_ne" already exists with same argument types
Command was: CREATE FUNCTION mv_mc_icase_ne(mvarchar, mchar) RETURNS boolean
AS '$libdir/mchar', 'mv_mc_icase_ne'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mvarchar(mvarchar, integer, boolean)
pg_restore: [archiver (db)] Error from TOC entry 34 ; 1255 16426 FUNCTION mvarchar(mvarchar, integer, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar" already exists with same argument types
Command was: CREATE FUNCTION mvarchar(mvarchar, integer, boolean) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar'
LANGUAGE c IMMU...
pg_restore: creating FUNCTION mvarchar_case_cmp(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 81 ; 1255 16502 FUNCTION mvarchar_case_cmp(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_cmp" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_cmp(mvarchar, mvarchar) RETURNS integer
AS '$libdir/mchar', 'mvarchar_case_cmp'
LANGUA...
pg_restore: creating FUNCTION mvarchar_case_eq(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 82 ; 1255 16503 FUNCTION mvarchar_case_eq(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_eq" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_eq(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_eq'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_case_ge(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 87 ; 1255 16508 FUNCTION mvarchar_case_ge(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_ge" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_ge(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_ge'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_case_gt(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 86 ; 1255 16507 FUNCTION mvarchar_case_gt(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_gt" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_gt(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_gt'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_case_le(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 85 ; 1255 16506 FUNCTION mvarchar_case_le(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_le" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_le(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_le'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_case_lt(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 84 ; 1255 16505 FUNCTION mvarchar_case_lt(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_lt" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_lt(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_lt'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_case_ne(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 83 ; 1255 16504 FUNCTION mvarchar_case_ne(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_case_ne" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_case_ne(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_case_ne'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_concat(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 49 ; 1255 16447 FUNCTION mvarchar_concat(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_concat" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_concat(mvarchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_concat'
LANGUAGE ...
pg_restore: creating FUNCTION mvarchar_hash(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 48 ; 1255 16446 FUNCTION mvarchar_hash(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_hash" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_hash(mvarchar) RETURNS integer
AS '$libdir/mchar', 'mvarchar_hash'
LANGUAGE c IMMUTABLE STR...
pg_restore: creating FUNCTION mvarchar_icase_cmp(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 74 ; 1255 16489 FUNCTION mvarchar_icase_cmp(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_cmp" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_cmp(mvarchar, mvarchar) RETURNS integer
AS '$libdir/mchar', 'mvarchar_icase_cmp'
LANG...
pg_restore: creating FUNCTION mvarchar_icase_eq(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 75 ; 1255 16490 FUNCTION mvarchar_icase_eq(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_eq" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_eq(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_eq'
LANGUA...
pg_restore: creating FUNCTION mvarchar_icase_ge(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 80 ; 1255 16495 FUNCTION mvarchar_icase_ge(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_ge" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_ge(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_ge'
LANGUA...
pg_restore: creating FUNCTION mvarchar_icase_gt(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 79 ; 1255 16494 FUNCTION mvarchar_icase_gt(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_gt" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_gt(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_gt'
LANGUA...
pg_restore: creating FUNCTION mvarchar_icase_le(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 78 ; 1255 16493 FUNCTION mvarchar_icase_le(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_le" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_le(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_le'
LANGUA...
pg_restore: creating FUNCTION mvarchar_icase_lt(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 77 ; 1255 16492 FUNCTION mvarchar_icase_lt(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_lt" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_lt(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_lt'
LANGUA...
pg_restore: creating FUNCTION mvarchar_icase_ne(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 76 ; 1255 16491 FUNCTION mvarchar_icase_ne(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_icase_ne" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_icase_ne(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_icase_ne'
LANGUA...
pg_restore: creating FUNCTION mvarchar_larger(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 122 ; 1255 16579 FUNCTION mvarchar_larger(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_larger" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_larger(mvarchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_larger'
LANGUAGE ...
pg_restore: creating FUNCTION mvarchar_like(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 50 ; 1255 16449 FUNCTION mvarchar_like(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_like" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_like(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_like'
LANGUAGE c IMM...
pg_restore: creating FUNCTION mvarchar_mchar(mvarchar, integer, boolean)
pg_restore: [archiver (db)] Error from TOC entry 118 ; 1255 16571 FUNCTION mvarchar_mchar(mvarchar, integer, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_mchar" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_mchar(mvarchar, integer, boolean) RETURNS mchar
AS '$libdir/mchar', 'mvarchar_mchar'
LANGUA...
pg_restore: creating FUNCTION mvarchar_mchar_concat(mvarchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 117 ; 1255 16569 FUNCTION mvarchar_mchar_concat(mvarchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_mchar_concat" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_mchar_concat(mvarchar, mchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_mchar_concat'
...
pg_restore: creating FUNCTION mvarchar_notlike(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 52 ; 1255 16451 FUNCTION mvarchar_notlike(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_notlike" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_notlike(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_notlike'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_regexeq(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 53 ; 1255 16454 FUNCTION mvarchar_regexeq(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_regexeq" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_regexeq(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_regexeq'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_regexne(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 54 ; 1255 16455 FUNCTION mvarchar_regexne(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_regexne" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_regexne(mvarchar, mvarchar) RETURNS boolean
AS '$libdir/mchar', 'mvarchar_regexne'
LANGUAGE...
pg_restore: creating FUNCTION mvarchar_smaller(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 123 ; 1255 16581 FUNCTION mvarchar_smaller(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "mvarchar_smaller" already exists with same argument types
Command was: CREATE FUNCTION mvarchar_smaller(mvarchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_smaller'
LANGUAG...
pg_restore: creating FUNCTION plpgsql_call_handler()
pg_restore: [archiver (db)] Error from TOC entry 13 ; 1255 16404 FUNCTION plpgsql_call_handler() postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "plpgsql_call_handler" already exists with same argument types
Command was: CREATE FUNCTION plpgsql_call_handler() RETURNS language_handler
AS '$libdir/plpgsql', 'plpgsql_call_handler'
LANGUAG...
pg_restore: creating FUNCTION similar_escape(mchar, mchar)
pg_restore: [archiver (db)] Error from TOC entry 44 ; 1255 16442 FUNCTION similar_escape(mchar, mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "similar_escape" already exists with same argument types
Command was: CREATE FUNCTION similar_escape(mchar, mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_similar_escape'
LANGUAGE c IMM...
pg_restore: creating FUNCTION similar_escape(mvarchar, mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 55 ; 1255 16458 FUNCTION similar_escape(mvarchar, mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "similar_escape" already exists with same argument types
Command was: CREATE FUNCTION similar_escape(mvarchar, mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_similar_escape'
LA...
pg_restore: creating FUNCTION state_max_bool(boolean, boolean)
pg_restore: [archiver (db)] Error from TOC entry 21 ; 1255 16408 FUNCTION state_max_bool(boolean, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "state_max_bool" already exists with same argument types
Command was: CREATE FUNCTION state_max_bool(st boolean, inp boolean) RETURNS boolean
AS $$
BEGIN
if st is null or not st
...
pg_restore: creating FUNCTION state_max_bytea(bytea, bytea)
pg_restore: [archiver (db)] Error from TOC entry 19 ; 1255 16406 FUNCTION state_max_bytea(bytea, bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "state_max_bytea" already exists with same argument types
Command was: CREATE FUNCTION state_max_bytea(st bytea, inp bytea) RETURNS bytea
AS $$
BEGIN
if st is null
then
...
pg_restore: creating FUNCTION state_min_bool(boolean, boolean)
pg_restore: [archiver (db)] Error from TOC entry 22 ; 1255 16409 FUNCTION state_min_bool(boolean, boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "state_min_bool" already exists with same argument types
Command was: CREATE FUNCTION state_min_bool(st boolean, inp boolean) RETURNS boolean
AS $$
BEGIN
if st is null or st
...
pg_restore: creating FUNCTION state_min_bytea(bytea, bytea)
pg_restore: [archiver (db)] Error from TOC entry 20 ; 1255 16407 FUNCTION state_min_bytea(bytea, bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "state_min_bytea" already exists with same argument types
Command was: CREATE FUNCTION state_min_bytea(st bytea, inp bytea) RETURNS bytea
AS $$
BEGIN
if st is null
then
...
pg_restore: creating FUNCTION substr(mchar, integer)
pg_restore: [archiver (db)] Error from TOC entry 56 ; 1255 16459 FUNCTION substr(mchar, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "substr" already exists with same argument types
Command was: CREATE FUNCTION substr(mchar, integer) RETURNS mchar
AS '$libdir/mchar', 'mchar_substring_no_len'
LANGUAGE c IMMUTAB...
pg_restore: creating FUNCTION substr(mchar, integer, integer)
pg_restore: [archiver (db)] Error from TOC entry 57 ; 1255 16460 FUNCTION substr(mchar, integer, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "substr" already exists with same argument types
Command was: CREATE FUNCTION substr(mchar, integer, integer) RETURNS mchar
AS '$libdir/mchar', 'mchar_substring'
LANGUAGE c IMMUT...
pg_restore: creating FUNCTION substr(mvarchar, integer)
pg_restore: [archiver (db)] Error from TOC entry 58 ; 1255 16461 FUNCTION substr(mvarchar, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "substr" already exists with same argument types
Command was: CREATE FUNCTION substr(mvarchar, integer) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_substring_no_len'
LANGUAGE ...
pg_restore: creating FUNCTION substr(mvarchar, integer, integer)
pg_restore: [archiver (db)] Error from TOC entry 59 ; 1255 16462 FUNCTION substr(mvarchar, integer, integer) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "substr" already exists with same argument types
Command was: CREATE FUNCTION substr(mvarchar, integer, integer) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_substring'
LANGUAG...
pg_restore: creating FUNCTION upper(mchar)
pg_restore: [archiver (db)] Error from TOC entry 36 ; 1255 16429 FUNCTION upper(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "upper" already exists with same argument types
Command was: CREATE FUNCTION upper(mchar) RETURNS mchar
AS '$libdir/mchar', 'mchar_upper'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating FUNCTION upper(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 46 ; 1255 16444 FUNCTION upper(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "upper" already exists with same argument types
Command was: CREATE FUNCTION upper(mvarchar) RETURNS mvarchar
AS '$libdir/mchar', 'mvarchar_upper'
LANGUAGE c IMMUTABLE STRICT;
pg_restore: creating OPERATOR >
pg_restore: [archiver (db)] Error from TOC entry 1093 ; 2617 16470 OPERATOR > postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator > already exists
Command was: CREATE OPERATOR > (
PROCEDURE = mchar_icase_gt,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = <,
NEGAT...
pg_restore: creating AGGREGATE max(mchar)
pg_restore: [archiver (db)] Error from TOC entry 431 ; 1255 16576 AGGREGATE max(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "max" already exists with same argument types
Command was: CREATE AGGREGATE max (
BASETYPE = mchar,
SFUNC = mchar_larger,
STYPE = mchar,
SORTOP = >
);
pg_restore: creating OPERATOR >
pg_restore: [archiver (db)] Error from TOC entry 1105 ; 2617 16496 OPERATOR > postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator > already exists
Command was: CREATE OPERATOR > (
PROCEDURE = mvarchar_icase_gt,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = <,
...
pg_restore: creating AGGREGATE max(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 433 ; 1255 16580 AGGREGATE max(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "max" already exists with same argument types
Command was: CREATE AGGREGATE max (
BASETYPE = mvarchar,
SFUNC = mvarchar_larger,
STYPE = mvarchar,
SORTOP = >
);
pg_restore: creating AGGREGATE max(boolean)
pg_restore: [archiver (db)] Error from TOC entry 435 ; 1255 16706 AGGREGATE max(boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "max" already exists with same argument types
Command was: CREATE AGGREGATE max (
BASETYPE = boolean,
SFUNC = state_max_bool,
STYPE = boolean
);
pg_restore: creating AGGREGATE max(bytea)
pg_restore: [archiver (db)] Error from TOC entry 437 ; 1255 16708 AGGREGATE max(bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "max" already exists with same argument types
Command was: CREATE AGGREGATE max (
BASETYPE = bytea,
SFUNC = state_max_bytea,
STYPE = bytea
);
pg_restore: creating OPERATOR <
pg_restore: [archiver (db)] Error from TOC entry 1092 ; 2617 16472 OPERATOR < postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator < already exists
Command was: CREATE OPERATOR < (
PROCEDURE = mchar_icase_lt,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = >,
NEGAT...
pg_restore: creating AGGREGATE min(mchar)
pg_restore: [archiver (db)] Error from TOC entry 432 ; 1255 16578 AGGREGATE min(mchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "min" already exists with same argument types
Command was: CREATE AGGREGATE min (
BASETYPE = mchar,
SFUNC = mchar_smaller,
STYPE = mchar,
SORTOP = <
);
pg_restore: creating OPERATOR <
pg_restore: [archiver (db)] Error from TOC entry 1104 ; 2617 16498 OPERATOR < postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator < already exists
Command was: CREATE OPERATOR < (
PROCEDURE = mvarchar_icase_lt,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = >,
...
pg_restore: creating AGGREGATE min(mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 434 ; 1255 16582 AGGREGATE min(mvarchar) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "min" already exists with same argument types
Command was: CREATE AGGREGATE min (
BASETYPE = mvarchar,
SFUNC = mvarchar_smaller,
STYPE = mvarchar,
SORTOP = <
);
pg_restore: creating AGGREGATE min(boolean)
pg_restore: [archiver (db)] Error from TOC entry 436 ; 1255 16707 AGGREGATE min(boolean) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "min" already exists with same argument types
Command was: CREATE AGGREGATE min (
BASETYPE = boolean,
SFUNC = state_min_bool,
STYPE = boolean
);
pg_restore: creating AGGREGATE min(bytea)
pg_restore: [archiver (db)] Error from TOC entry 438 ; 1255 16709 AGGREGATE min(bytea) postgres
pg_restore: [archiver (db)] could not execute query: ERROR: function "min" already exists with same argument types
Command was: CREATE AGGREGATE min (
BASETYPE = bytea,
SFUNC = state_min_bytea,
STYPE = bytea
);
pg_restore: creating OPERATOR !~
pg_restore: [archiver (db)] Error from TOC entry 1086 ; 2617 16440 OPERATOR !~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator !~ already exists
Command was: CREATE OPERATOR !~ (
PROCEDURE = mchar_regexne,
LEFTARG = mchar,
RIGHTARG = mchar,
NEGATOR = ~,
RESTRICT...
pg_restore: creating OPERATOR !~
pg_restore: [archiver (db)] Error from TOC entry 1091 ; 2617 16456 OPERATOR !~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator !~ already exists
Command was: CREATE OPERATOR !~ (
PROCEDURE = mvarchar_regexne,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
NEGATOR = ~,
...
pg_restore: creating OPERATOR !~~
pg_restore: [archiver (db)] Error from TOC entry 1084 ; 2617 16436 OPERATOR !~~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator !~~ already exists
Command was: CREATE OPERATOR !~~ (
PROCEDURE = mchar_notlike,
LEFTARG = mchar,
RIGHTARG = mvarchar,
NEGATOR = ~~,
RES...
pg_restore: creating OPERATOR !~~
pg_restore: [archiver (db)] Error from TOC entry 1089 ; 2617 16452 OPERATOR !~~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator !~~ already exists
Command was: CREATE OPERATOR !~~ (
PROCEDURE = mvarchar_notlike,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
NEGATOR = ~~,
...
pg_restore: creating OPERATOR &<
pg_restore: [archiver (db)] Error from TOC entry 1098 ; 2617 16485 OPERATOR &< postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &< already exists
Command was: CREATE OPERATOR &< (
PROCEDURE = mchar_case_lt,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &>,
NEGA...
pg_restore: creating OPERATOR &<
pg_restore: [archiver (db)] Error from TOC entry 1110 ; 2617 16511 OPERATOR &< postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &< already exists
Command was: CREATE OPERATOR &< (
PROCEDURE = mvarchar_case_lt,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &>,...
pg_restore: creating OPERATOR &<
pg_restore: [archiver (db)] Error from TOC entry 1122 ; 2617 16543 OPERATOR &< postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &< already exists
Command was: CREATE OPERATOR &< (
PROCEDURE = mc_mv_case_lt,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &>,
N...
pg_restore: creating OPERATOR &<
pg_restore: [archiver (db)] Error from TOC entry 1134 ; 2617 16544 OPERATOR &< postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &< already exists
Command was: CREATE OPERATOR &< (
PROCEDURE = mv_mc_case_lt,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &>,
N...
pg_restore: creating OPERATOR &<=
pg_restore: [archiver (db)] Error from TOC entry 1100 ; 2617 16486 OPERATOR &<= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<= already exists
Command was: CREATE OPERATOR &<= (
PROCEDURE = mchar_case_le,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &>=,
NE...
pg_restore: creating OPERATOR &<=
pg_restore: [archiver (db)] Error from TOC entry 1112 ; 2617 16512 OPERATOR &<= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<= already exists
Command was: CREATE OPERATOR &<= (
PROCEDURE = mvarchar_case_le,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &>...
pg_restore: creating OPERATOR &<=
pg_restore: [archiver (db)] Error from TOC entry 1124 ; 2617 16545 OPERATOR &<= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<= already exists
Command was: CREATE OPERATOR &<= (
PROCEDURE = mc_mv_case_le,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &>=,
...
pg_restore: creating OPERATOR &<=
pg_restore: [archiver (db)] Error from TOC entry 1136 ; 2617 16548 OPERATOR &<= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<= already exists
Command was: CREATE OPERATOR &<= (
PROCEDURE = mv_mc_case_le,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &>=,
...
pg_restore: creating OPERATOR &<>
pg_restore: [archiver (db)] Error from TOC entry 1103 ; 2617 16487 OPERATOR &<> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<> already exists
Command was: CREATE OPERATOR &<> (
PROCEDURE = mchar_case_ne,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &<>,
NE...
pg_restore: creating OPERATOR &<>
pg_restore: [archiver (db)] Error from TOC entry 1115 ; 2617 16513 OPERATOR &<> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<> already exists
Command was: CREATE OPERATOR &<> (
PROCEDURE = mvarchar_case_ne,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<...
pg_restore: creating OPERATOR &<>
pg_restore: [archiver (db)] Error from TOC entry 1127 ; 2617 16550 OPERATOR &<> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<> already exists
Command was: CREATE OPERATOR &<> (
PROCEDURE = mc_mv_case_ne,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<>,
...
pg_restore: creating OPERATOR &<>
pg_restore: [archiver (db)] Error from TOC entry 1139 ; 2617 16552 OPERATOR &<> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &<> already exists
Command was: CREATE OPERATOR &<> (
PROCEDURE = mv_mc_case_ne,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &<>,
...
pg_restore: creating OPERATOR &=
pg_restore: [archiver (db)] Error from TOC entry 1102 ; 2617 16488 OPERATOR &= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &= already exists
Command was: CREATE OPERATOR &= (
PROCEDURE = mchar_case_eq,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &=,
NEGA...
pg_restore: creating OPERATOR &=
pg_restore: [archiver (db)] Error from TOC entry 1114 ; 2617 16514 OPERATOR &= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &= already exists
Command was: CREATE OPERATOR &= (
PROCEDURE = mvarchar_case_eq,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &=,...
pg_restore: creating OPERATOR &=
pg_restore: [archiver (db)] Error from TOC entry 1138 ; 2617 16549 OPERATOR &= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &= already exists
Command was: CREATE OPERATOR &= (
PROCEDURE = mv_mc_case_eq,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &=,
N...
pg_restore: creating OPERATOR &=
pg_restore: [archiver (db)] Error from TOC entry 1126 ; 2617 16551 OPERATOR &= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &= already exists
Command was: CREATE OPERATOR &= (
PROCEDURE = mc_mv_case_eq,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &=,
N...
pg_restore: creating OPERATOR &>
pg_restore: [archiver (db)] Error from TOC entry 1099 ; 2617 16483 OPERATOR &> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &> already exists
Command was: CREATE OPERATOR &> (
PROCEDURE = mchar_case_gt,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &<,
NEGA...
pg_restore: creating OPERATOR &>
pg_restore: [archiver (db)] Error from TOC entry 1111 ; 2617 16509 OPERATOR &> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &> already exists
Command was: CREATE OPERATOR &> (
PROCEDURE = mvarchar_case_gt,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<,...
pg_restore: creating OPERATOR &>
pg_restore: [archiver (db)] Error from TOC entry 1135 ; 2617 16541 OPERATOR &> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &> already exists
Command was: CREATE OPERATOR &> (
PROCEDURE = mv_mc_case_gt,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &<,
N...
pg_restore: creating OPERATOR &>
pg_restore: [archiver (db)] Error from TOC entry 1123 ; 2617 16546 OPERATOR &> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &> already exists
Command was: CREATE OPERATOR &> (
PROCEDURE = mc_mv_case_gt,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<,
N...
pg_restore: creating OPERATOR &>=
pg_restore: [archiver (db)] Error from TOC entry 1101 ; 2617 16484 OPERATOR &>= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &>= already exists
Command was: CREATE OPERATOR &>= (
PROCEDURE = mchar_case_ge,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = &<=,
NE...
pg_restore: creating OPERATOR &>=
pg_restore: [archiver (db)] Error from TOC entry 1113 ; 2617 16510 OPERATOR &>= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &>= already exists
Command was: CREATE OPERATOR &>= (
PROCEDURE = mvarchar_case_ge,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<...
pg_restore: creating OPERATOR &>=
pg_restore: [archiver (db)] Error from TOC entry 1125 ; 2617 16542 OPERATOR &>= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &>= already exists
Command was: CREATE OPERATOR &>= (
PROCEDURE = mc_mv_case_ge,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = &<=,
...
pg_restore: creating OPERATOR &>=
pg_restore: [archiver (db)] Error from TOC entry 1137 ; 2617 16547 OPERATOR &>= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator &>= already exists
Command was: CREATE OPERATOR &>= (
PROCEDURE = mv_mc_case_ge,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = &<=,
...
pg_restore: creating OPERATOR <
pg_restore: [archiver (db)] Error from TOC entry 1116 ; 2617 16524 OPERATOR < postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator < already exists
Command was: CREATE OPERATOR < (
PROCEDURE = mc_mv_icase_lt,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = >,
NE...
pg_restore: creating OPERATOR <
pg_restore: [archiver (db)] Error from TOC entry 1128 ; 2617 16525 OPERATOR < postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator < already exists
Command was: CREATE OPERATOR < (
PROCEDURE = mv_mc_icase_lt,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = >,
NE...
pg_restore: creating OPERATOR <=
pg_restore: [archiver (db)] Error from TOC entry 1094 ; 2617 16473 OPERATOR <= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <= already exists
Command was: CREATE OPERATOR <= (
PROCEDURE = mchar_icase_le,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = >=,
NEG...
pg_restore: creating OPERATOR <=
pg_restore: [archiver (db)] Error from TOC entry 1106 ; 2617 16499 OPERATOR <= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <= already exists
Command was: CREATE OPERATOR <= (
PROCEDURE = mvarchar_icase_le,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = >=...
pg_restore: creating OPERATOR <=
pg_restore: [archiver (db)] Error from TOC entry 1118 ; 2617 16526 OPERATOR <= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <= already exists
Command was: CREATE OPERATOR <= (
PROCEDURE = mc_mv_icase_le,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = >=,
...
pg_restore: creating OPERATOR <=
pg_restore: [archiver (db)] Error from TOC entry 1130 ; 2617 16529 OPERATOR <= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <= already exists
Command was: CREATE OPERATOR <= (
PROCEDURE = mv_mc_icase_le,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = >=,
...
pg_restore: creating OPERATOR <>
pg_restore: [archiver (db)] Error from TOC entry 1097 ; 2617 16474 OPERATOR <> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <> already exists
Command was: CREATE OPERATOR <> (
PROCEDURE = mchar_icase_ne,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = <>,
NEG...
pg_restore: creating OPERATOR <>
pg_restore: [archiver (db)] Error from TOC entry 1109 ; 2617 16500 OPERATOR <> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <> already exists
Command was: CREATE OPERATOR <> (
PROCEDURE = mvarchar_icase_ne,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = <>...
pg_restore: creating OPERATOR <>
pg_restore: [archiver (db)] Error from TOC entry 1121 ; 2617 16531 OPERATOR <> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <> already exists
Command was: CREATE OPERATOR <> (
PROCEDURE = mc_mv_icase_ne,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = <>,
...
pg_restore: creating OPERATOR <>
pg_restore: [archiver (db)] Error from TOC entry 1133 ; 2617 16533 OPERATOR <> postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator <> already exists
Command was: CREATE OPERATOR <> (
PROCEDURE = mv_mc_icase_ne,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = <>,
...
pg_restore: creating OPERATOR =
pg_restore: [archiver (db)] Error from TOC entry 1096 ; 2617 16475 OPERATOR = postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator = already exists
Command was: CREATE OPERATOR = (
PROCEDURE = mchar_icase_eq,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = =,
NEGAT...
pg_restore: creating OPERATOR =
pg_restore: [archiver (db)] Error from TOC entry 1108 ; 2617 16501 OPERATOR = postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator = already exists
Command was: CREATE OPERATOR = (
PROCEDURE = mvarchar_icase_eq,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = =,
...
pg_restore: creating OPERATOR =
pg_restore: [archiver (db)] Error from TOC entry 1132 ; 2617 16530 OPERATOR = postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator = already exists
Command was: CREATE OPERATOR = (
PROCEDURE = mv_mc_icase_eq,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = =,
NE...
pg_restore: creating OPERATOR =
pg_restore: [archiver (db)] Error from TOC entry 1120 ; 2617 16532 OPERATOR = postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator = already exists
Command was: CREATE OPERATOR = (
PROCEDURE = mc_mv_icase_eq,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = =,
NE...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1142 ; 2617 16591 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_bool,
LEFTARG = boolean,
RIGHTARG = boolean,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1143 ; 2617 16595 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_bytea,
LEFTARG = bytea,
RIGHTARG = bytea,
COMMUTATOR = ==,
HAS...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1144 ; 2617 16599 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_char,
LEFTARG = character,
RIGHTARG = character,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1145 ; 2617 16603 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_name,
LEFTARG = name,
RIGHTARG = name,
COMMUTATOR = ==,
HASHES...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1146 ; 2617 16607 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_int8,
LEFTARG = bigint,
RIGHTARG = bigint,
COMMUTATOR = ==,
HA...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1147 ; 2617 16611 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_int2,
LEFTARG = smallint,
RIGHTARG = smallint,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1148 ; 2617 16615 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_int2vector,
LEFTARG = int2vector,
RIGHTARG = int2vector,
COMMUTATO...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1149 ; 2617 16619 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_int4,
LEFTARG = integer,
RIGHTARG = integer,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1150 ; 2617 16623 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_text,
LEFTARG = text,
RIGHTARG = text,
COMMUTATOR = ==,
HASHES...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1151 ; 2617 16627 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_oid,
LEFTARG = oid,
RIGHTARG = oid,
COMMUTATOR = ==,
HASHES,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1152 ; 2617 16631 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_xid,
LEFTARG = xid,
RIGHTARG = xid,
COMMUTATOR = ==,
HASHES,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1153 ; 2617 16635 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_cid,
LEFTARG = cid,
RIGHTARG = cid,
COMMUTATOR = ==,
HASHES,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1154 ; 2617 16639 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_oidvector,
LEFTARG = oidvector,
RIGHTARG = oidvector,
COMMUTATOR =...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1155 ; 2617 16643 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_float4,
LEFTARG = real,
RIGHTARG = real,
COMMUTATOR = ==,
HASH...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1156 ; 2617 16647 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_float8,
LEFTARG = double precision,
RIGHTARG = double precision,
C...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1157 ; 2617 16651 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_abstime,
LEFTARG = abstime,
RIGHTARG = abstime,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1158 ; 2617 16655 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_reltime,
LEFTARG = reltime,
RIGHTARG = reltime,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1159 ; 2617 16659 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_macaddr,
LEFTARG = macaddr,
RIGHTARG = macaddr,
COMMUTATOR = ==,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1160 ; 2617 16663 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_inet,
LEFTARG = inet,
RIGHTARG = inet,
COMMUTATOR = ==,
HASHES...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1161 ; 2617 16667 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_cidr,
LEFTARG = cidr,
RIGHTARG = cidr,
COMMUTATOR = ==,
HASHES...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1162 ; 2617 16671 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_varchar,
LEFTARG = character varying,
RIGHTARG = character varying,
...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1163 ; 2617 16675 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_date,
LEFTARG = date,
RIGHTARG = date,
COMMUTATOR = ==,
HASHES...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1164 ; 2617 16679 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_time,
LEFTARG = time without time zone,
RIGHTARG = time without time z...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1165 ; 2617 16683 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_timestamp,
LEFTARG = timestamp without time zone,
RIGHTARG = timestamp...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1166 ; 2617 16687 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_timestamptz,
LEFTARG = timestamp with time zone,
RIGHTARG = timestamp ...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1167 ; 2617 16691 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_interval,
LEFTARG = interval,
RIGHTARG = interval,
COMMUTATOR = ==...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1168 ; 2617 16695 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_timetz,
LEFTARG = time with time zone,
RIGHTARG = time with time zone,...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1169 ; 2617 16699 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_mchar,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = ==,
HAS...
pg_restore: creating OPERATOR ==
pg_restore: [archiver (db)] Error from TOC entry 1170 ; 2617 16703 OPERATOR == postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator == already exists
Command was: CREATE OPERATOR == (
PROCEDURE = isfulleq_mvarchar,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = ==...
pg_restore: creating OPERATOR >
pg_restore: [archiver (db)] Error from TOC entry 1129 ; 2617 16522 OPERATOR > postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator > already exists
Command was: CREATE OPERATOR > (
PROCEDURE = mv_mc_icase_gt,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = <,
NE...
pg_restore: creating OPERATOR >
pg_restore: [archiver (db)] Error from TOC entry 1117 ; 2617 16527 OPERATOR > postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator > already exists
Command was: CREATE OPERATOR > (
PROCEDURE = mc_mv_icase_gt,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = <,
NE...
pg_restore: creating OPERATOR >=
pg_restore: [archiver (db)] Error from TOC entry 1095 ; 2617 16471 OPERATOR >= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator >= already exists
Command was: CREATE OPERATOR >= (
PROCEDURE = mchar_icase_ge,
LEFTARG = mchar,
RIGHTARG = mchar,
COMMUTATOR = <=,
NEG...
pg_restore: creating OPERATOR >=
pg_restore: [archiver (db)] Error from TOC entry 1107 ; 2617 16497 OPERATOR >= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator >= already exists
Command was: CREATE OPERATOR >= (
PROCEDURE = mvarchar_icase_ge,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
COMMUTATOR = <=...
pg_restore: creating OPERATOR >=
pg_restore: [archiver (db)] Error from TOC entry 1119 ; 2617 16523 OPERATOR >= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator >= already exists
Command was: CREATE OPERATOR >= (
PROCEDURE = mc_mv_icase_ge,
LEFTARG = mchar,
RIGHTARG = mvarchar,
COMMUTATOR = <=,
...
pg_restore: creating OPERATOR >=
pg_restore: [archiver (db)] Error from TOC entry 1131 ; 2617 16528 OPERATOR >= postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator >= already exists
Command was: CREATE OPERATOR >= (
PROCEDURE = mv_mc_icase_ge,
LEFTARG = mvarchar,
RIGHTARG = mchar,
COMMUTATOR = <=,
...
pg_restore: creating OPERATOR ||
pg_restore: [archiver (db)] Error from TOC entry 1082 ; 2617 16433 OPERATOR || postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator || already exists
Command was: CREATE OPERATOR || (
PROCEDURE = mchar_concat,
LEFTARG = mchar,
RIGHTARG = mchar
);
pg_restore: creating OPERATOR ||
pg_restore: [archiver (db)] Error from TOC entry 1087 ; 2617 16448 OPERATOR || postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator || already exists
Command was: CREATE OPERATOR || (
PROCEDURE = mvarchar_concat,
LEFTARG = mvarchar,
RIGHTARG = mvarchar
);
pg_restore: creating OPERATOR ||
pg_restore: [archiver (db)] Error from TOC entry 1140 ; 2617 16568 OPERATOR || postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator || already exists
Command was: CREATE OPERATOR || (
PROCEDURE = mchar_mvarchar_concat,
LEFTARG = mchar,
RIGHTARG = mvarchar
);
pg_restore: creating OPERATOR ||
pg_restore: [archiver (db)] Error from TOC entry 1141 ; 2617 16570 OPERATOR || postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator || already exists
Command was: CREATE OPERATOR || (
PROCEDURE = mvarchar_mchar_concat,
LEFTARG = mvarchar,
RIGHTARG = mchar
);
pg_restore: creating OPERATOR ~
pg_restore: [archiver (db)] Error from TOC entry 1085 ; 2617 16441 OPERATOR ~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator ~ already exists
Command was: CREATE OPERATOR ~ (
PROCEDURE = mchar_regexeq,
LEFTARG = mchar,
RIGHTARG = mchar,
NEGATOR = !~,
RESTRICT...
pg_restore: creating OPERATOR ~
pg_restore: [archiver (db)] Error from TOC entry 1090 ; 2617 16457 OPERATOR ~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator ~ already exists
Command was: CREATE OPERATOR ~ (
PROCEDURE = mvarchar_regexeq,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
NEGATOR = !~,
...
pg_restore: creating OPERATOR ~~
pg_restore: [archiver (db)] Error from TOC entry 1083 ; 2617 16437 OPERATOR ~~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator ~~ already exists
Command was: CREATE OPERATOR ~~ (
PROCEDURE = mchar_like,
LEFTARG = mchar,
RIGHTARG = mvarchar,
NEGATOR = !~~,
RESTRI...
pg_restore: creating OPERATOR ~~
pg_restore: [archiver (db)] Error from TOC entry 1088 ; 2617 16453 OPERATOR ~~ postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator ~~ already exists
Command was: CREATE OPERATOR ~~ (
PROCEDURE = mvarchar_like,
LEFTARG = mvarchar,
RIGHTARG = mvarchar,
NEGATOR = !~~,
...
pg_restore: creating OPERATOR CLASS abstime_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1263 ; 2616 16652 OPERATOR CLASS abstime_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "abstime_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS abstime_fill_ops
FOR TYPE abstime USING hash AS
OPERATOR 1 ==(abstime,abstime) ,
FUNCTION ...
pg_restore: creating OPERATOR CLASS bool_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1248 ; 2616 16592 OPERATOR CLASS bool_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "bool_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS bool_fill_ops
FOR TYPE boolean USING hash AS
OPERATOR 1 ==(boolean,boolean) ,
FUNCTION 1 f...
pg_restore: creating OPERATOR CLASS bytea_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1249 ; 2616 16596 OPERATOR CLASS bytea_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "bytea_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS bytea_fill_ops
FOR TYPE bytea USING hash AS
OPERATOR 1 ==(bytea,bytea) ,
FUNCTION 1 fullha...
pg_restore: creating OPERATOR CLASS char_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1250 ; 2616 16600 OPERATOR CLASS char_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "char_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS char_fill_ops
FOR TYPE character USING hash AS
OPERATOR 1 ==(character,character) ,
FUNCTI...
pg_restore: creating OPERATOR CLASS cid_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1259 ; 2616 16636 OPERATOR CLASS cid_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "cid_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS cid_fill_ops
FOR TYPE cid USING hash AS
OPERATOR 1 ==(cid,cid) ,
FUNCTION 1 fullhash_cid(c...
pg_restore: creating OPERATOR CLASS cidr_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1267 ; 2616 16668 OPERATOR CLASS cidr_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "cidr_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS cidr_fill_ops
FOR TYPE cidr USING hash AS
OPERATOR 1 ==(cidr,cidr) ,
FUNCTION 1 fullhash_c...
pg_restore: creating OPERATOR CLASS date_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1269 ; 2616 16676 OPERATOR CLASS date_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "date_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS date_fill_ops
FOR TYPE date USING hash AS
OPERATOR 1 ==(date,date) ,
FUNCTION 1 fullhash_d...
pg_restore: creating OPERATOR CLASS float4_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1261 ; 2616 16644 OPERATOR CLASS float4_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "float4_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS float4_fill_ops
FOR TYPE real USING hash AS
OPERATOR 1 ==(real,real) ,
FUNCTION 1 fullhash...
pg_restore: creating OPERATOR CLASS float8_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1262 ; 2616 16648 OPERATOR CLASS float8_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "float8_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS float8_fill_ops
FOR TYPE double precision USING hash AS
OPERATOR 1 ==(double precision,double ...
pg_restore: creating OPERATOR CLASS inet_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1266 ; 2616 16664 OPERATOR CLASS inet_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "inet_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS inet_fill_ops
FOR TYPE inet USING hash AS
OPERATOR 1 ==(inet,inet) ,
FUNCTION 1 fullhash_i...
pg_restore: creating OPERATOR CLASS int2_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1253 ; 2616 16612 OPERATOR CLASS int2_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "int2_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS int2_fill_ops
FOR TYPE smallint USING hash AS
OPERATOR 1 ==(smallint,smallint) ,
FUNCTION ...
pg_restore: creating OPERATOR CLASS int2vector_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1254 ; 2616 16616 OPERATOR CLASS int2vector_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "int2vector_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS int2vector_fill_ops
FOR TYPE int2vector USING hash AS
OPERATOR 1 ==(int2vector,int2vector) ,
...
pg_restore: creating OPERATOR CLASS int4_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1255 ; 2616 16620 OPERATOR CLASS int4_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "int4_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS int4_fill_ops
FOR TYPE integer USING hash AS
OPERATOR 1 ==(integer,integer) ,
FUNCTION 1 f...
pg_restore: creating OPERATOR CLASS int8_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1252 ; 2616 16608 OPERATOR CLASS int8_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "int8_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS int8_fill_ops
FOR TYPE bigint USING hash AS
OPERATOR 1 ==(bigint,bigint) ,
FUNCTION 1 full...
pg_restore: creating OPERATOR CLASS interval_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1273 ; 2616 16692 OPERATOR CLASS interval_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "interval_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS interval_fill_ops
FOR TYPE interval USING hash AS
OPERATOR 1 ==(interval,interval) ,
FUNCT...
pg_restore: creating OPERATOR CLASS macaddr_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1265 ; 2616 16660 OPERATOR CLASS macaddr_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "macaddr_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS macaddr_fill_ops
FOR TYPE macaddr USING hash AS
OPERATOR 1 ==(macaddr,macaddr) ,
FUNCTION ...
pg_restore: creating OPERATOR CLASS mchar_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1275 ; 2616 16700 OPERATOR CLASS mchar_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mchar_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS mchar_fill_ops
FOR TYPE mchar USING hash AS
OPERATOR 1 ==(mchar,mchar) ,
FUNCTION 1 fullha...
pg_restore: creating OPERATOR CLASS mchar_icase_ops
pg_restore: [archiver (db)] Error from TOC entry 1244 ; 2616 16583 OPERATOR CLASS mchar_icase_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mchar_icase_ops" for access method "btree" already exists
Command was: CREATE OPERATOR CLASS mchar_icase_ops
DEFAULT FOR TYPE mchar USING btree AS
OPERATOR 1 <(mchar,mchar) ,
OPERATOR...
pg_restore: creating OPERATOR CLASS mchar_icase_ops
pg_restore: [archiver (db)] Error from TOC entry 1245 ; 2616 16584 OPERATOR CLASS mchar_icase_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mchar_icase_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS mchar_icase_ops
DEFAULT FOR TYPE mchar USING hash AS
OPERATOR 1 =(mchar,mchar) ,
FUNCTION ...
pg_restore: creating OPERATOR CLASS mvarchar_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1276 ; 2616 16704 OPERATOR CLASS mvarchar_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mvarchar_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS mvarchar_fill_ops
FOR TYPE mvarchar USING hash AS
OPERATOR 1 ==(mvarchar,mvarchar) ,
FUNCT...
pg_restore: creating OPERATOR CLASS mvarchar_icase_ops
pg_restore: [archiver (db)] Error from TOC entry 1246 ; 2616 16585 OPERATOR CLASS mvarchar_icase_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mvarchar_icase_ops" for access method "btree" already exists
Command was: CREATE OPERATOR CLASS mvarchar_icase_ops
DEFAULT FOR TYPE mvarchar USING btree AS
OPERATOR 1 <(mvarchar,mvarchar) ,
...
pg_restore: creating OPERATOR CLASS mvarchar_icase_ops
pg_restore: [archiver (db)] Error from TOC entry 1247 ; 2616 16586 OPERATOR CLASS mvarchar_icase_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "mvarchar_icase_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS mvarchar_icase_ops
DEFAULT FOR TYPE mvarchar USING hash AS
OPERATOR 1 =(mvarchar,mvarchar) ,
...
pg_restore: creating OPERATOR CLASS name_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1251 ; 2616 16604 OPERATOR CLASS name_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "name_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS name_fill_ops
FOR TYPE name USING hash AS
OPERATOR 1 ==(name,name) ,
FUNCTION 1 fullhash_n...
pg_restore: creating OPERATOR CLASS oid_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1257 ; 2616 16628 OPERATOR CLASS oid_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "oid_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS oid_fill_ops
FOR TYPE oid USING hash AS
OPERATOR 1 ==(oid,oid) ,
FUNCTION 1 fullhash_oid(o...
pg_restore: creating OPERATOR CLASS oidvector_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1260 ; 2616 16640 OPERATOR CLASS oidvector_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "oidvector_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS oidvector_fill_ops
FOR TYPE oidvector USING hash AS
OPERATOR 1 ==(oidvector,oidvector) ,
F...
pg_restore: creating OPERATOR CLASS reltime_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1264 ; 2616 16656 OPERATOR CLASS reltime_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "reltime_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS reltime_fill_ops
FOR TYPE reltime USING hash AS
OPERATOR 1 ==(reltime,reltime) ,
FUNCTION ...
pg_restore: creating OPERATOR CLASS text_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1256 ; 2616 16624 OPERATOR CLASS text_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "text_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS text_fill_ops
FOR TYPE text USING hash AS
OPERATOR 1 ==(text,text) ,
FUNCTION 1 fullhash_t...
pg_restore: creating OPERATOR CLASS time_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1270 ; 2616 16680 OPERATOR CLASS time_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "time_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS time_fill_ops
FOR TYPE time without time zone USING hash AS
OPERATOR 1 ==(time without time zo...
pg_restore: creating OPERATOR CLASS timestamp_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1271 ; 2616 16684 OPERATOR CLASS timestamp_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "timestamp_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS timestamp_fill_ops
FOR TYPE timestamp without time zone USING hash AS
OPERATOR 1 ==(timestamp ...
pg_restore: creating OPERATOR CLASS timestamptz_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1272 ; 2616 16688 OPERATOR CLASS timestamptz_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "timestamptz_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS timestamptz_fill_ops
FOR TYPE timestamp with time zone USING hash AS
OPERATOR 1 ==(timestamp w...
pg_restore: creating OPERATOR CLASS timetz_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1274 ; 2616 16696 OPERATOR CLASS timetz_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "timetz_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS timetz_fill_ops
FOR TYPE time with time zone USING hash AS
OPERATOR 1 ==(time with time zone,t...
pg_restore: creating OPERATOR CLASS varchar_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1268 ; 2616 16672 OPERATOR CLASS varchar_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "varchar_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS varchar_fill_ops
FOR TYPE character varying USING hash AS
OPERATOR 1 ==(character varying,char...
pg_restore: creating OPERATOR CLASS xid_fill_ops
pg_restore: [archiver (db)] Error from TOC entry 1258 ; 2616 16632 OPERATOR CLASS xid_fill_ops postgres
pg_restore: [archiver (db)] could not execute query: ERROR: operator class "xid_fill_ops" for access method "hash" already exists
Command was: CREATE OPERATOR CLASS xid_fill_ops
FOR TYPE xid USING hash AS
OPERATOR 1 ==(xid,xid) ,
FUNCTION 1 fullhash_xid(x...
pg_restore: creating CAST CAST (public.mchar AS public.mchar)
pg_restore: [archiver (db)] Error from TOC entry 1821 ; 2605 16419 CAST CAST (public.mchar AS public.mchar)
pg_restore: [archiver (db)] could not execute query: ERROR: cast from type public.mchar to type public.mchar already exists
Command was: CREATE CAST (public.mchar AS public.mchar) WITH FUNCTION public.mchar(public.mchar, integer, boolean) AS IMPLICIT;
pg_restore: creating CAST CAST (public.mchar AS public.mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 1822 ; 2605 16574 CAST CAST (public.mchar AS public.mvarchar)
pg_restore: [archiver (db)] could not execute query: ERROR: cast from type public.mchar to type public.mvarchar already exists
Command was: CREATE CAST (public.mchar AS public.mvarchar) WITH FUNCTION public.mchar_mvarchar(public.mchar, integer, boolean) AS IMPLICIT;
pg_restore: creating CAST CAST (public.mvarchar AS public.mchar)
pg_restore: [archiver (db)] Error from TOC entry 1823 ; 2605 16572 CAST CAST (public.mvarchar AS public.mchar)
pg_restore: [archiver (db)] could not execute query: ERROR: cast from type public.mvarchar to type public.mchar already exists
Command was: CREATE CAST (public.mvarchar AS public.mchar) WITH FUNCTION public.mvarchar_mchar(public.mvarchar, integer, boolean) AS IMPL...
pg_restore: creating CAST CAST (public.mvarchar AS public.mvarchar)
pg_restore: [archiver (db)] Error from TOC entry 1824 ; 2605 16427 CAST CAST (public.mvarchar AS public.mvarchar)
pg_restore: [archiver (db)] could not execute query: ERROR: cast from type public.mvarchar to type public.mvarchar already exists
Command was: CREATE CAST (public.mvarchar AS public.mvarchar) WITH FUNCTION public.mvarchar(public.mvarchar, integer, boolean) AS IMPLICIT;
pg_restore: creating TABLE _yearoffset
pg_restore: [archiver (db)] Error from TOC entry 1498 ; 1259 16742 TABLE _yearoffset postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "_yearoffset" already exists
Command was: CREATE TABLE _yearoffset (
ofset integer NOT NULL
);
pg_restore: creating TABLE config
pg_restore: [archiver (db)] Error from TOC entry 1494 ; 1259 16710 TABLE config postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "config" already exists
Command was: CREATE TABLE config (
filename mvarchar( 128 ) NOT NULL,
creation timestamp without time zone NOT NULL,
modified t...
pg_restore: creating TABLE configsave
pg_restore: [archiver (db)] Error from TOC entry 1495 ; 1259 16718 TABLE configsave postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "configsave" already exists
Command was: CREATE TABLE configsave (
filename mvarchar( 128 ) NOT NULL,
creation timestamp without time zone NOT NULL,
modifi...
pg_restore: creating TABLE dbschema
pg_restore: [archiver (db)] Error from TOC entry 1499 ; 1259 16744 TABLE dbschema postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "dbschema" already exists
Command was: CREATE TABLE dbschema (
serializeddata bytea NOT NULL
);
pg_restore: creating TABLE files
pg_restore: [archiver (db)] Error from TOC entry 1497 ; 1259 16734 TABLE files postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "files" already exists
Command was: CREATE TABLE files (
filename mvarchar( 128 ) NOT NULL,
creation timestamp without time zone NOT NULL,
modified ti...
pg_restore: creating TABLE params
pg_restore: [archiver (db)] Error from TOC entry 1496 ; 1259 16726 TABLE params postgres
pg_restore: [archiver (db)] could not execute query: ERROR: relation "params" already exists
Command was: CREATE TABLE params (
filename mvarchar( 128 ) NOT NULL,
creation timestamp without time zone NOT NULL,
modified t...
pg_restore: restoring data for table "_yearoffset"
pg_restore: restoring data for table "config"
pg_restore: restoring data for table "configsave"
pg_restore: restoring data for table "dbschema"
pg_restore: restoring data for table "files"
pg_restore: restoring data for table "params"
pg_restore: ERROR: duplicate key violates unique constraint "params_pkey"
CONTEXT: COPY params, line 1 : "locale.inf 2008-09-10 16:35:57 2008-09-10 16:35:57 0 34 \\357\\273\\277{"ru_RU",0,0,"",-1,"","","","..."
pg_restore: [archiver (db)] error returned by PQendcopy: ERROR: duplicate key violates unique constraint "params_pkey"
CONTEXT: COPY params, line 1: "locale.inf 2008 - 09 - 10 16 : 35 : 57 2008 - 09 - 10 16 : 35 : 57 0 34 \\ 357 \\ 273 \\ 277 {"ru_RU", 0 , 0 ,"",- 1 ,"","","","..."
pg_restore: *** aborted because of error
Process returned exit code 1 .