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 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433
|
# frozen-string-literal: true
require_relative '../utils/unmodified_identifiers'
module Sequel
# Top level module for holding all PostgreSQL-related modules and classes
# for Sequel. All adapters that connect to PostgreSQL support the following options:
#
# :client_min_messages :: Change the minimum level of messages that PostgreSQL will send to the
# the client. The PostgreSQL default is NOTICE, the Sequel default is
# WARNING. Set to nil to not change the server default. Overridable on
# a per instance basis via the :client_min_messages option.
# :force_standard_strings :: Set to false to not force the use of standard strings. Overridable
# on a per instance basis via the :force_standard_strings option.
# :search_path :: Set the schema search_path for this Database's connections.
# Allows to to set which schemas do not need explicit
# qualification, and in which order to check the schemas when
# an unqualified object is referenced.
module Postgres
Sequel::Database.set_shared_adapter_scheme(:postgres, self)
# Exception class ranged when literalizing integers outside the bigint/int8 range.
class IntegerOutsideBigintRange < InvalidValue; end
NAN = 0.0/0.0
PLUS_INFINITY = 1.0/0.0
MINUS_INFINITY = -1.0/0.0
boolean = Object.new
def boolean.call(s) s == 't' end
integer = Object.new
def integer.call(s) s.to_i end
float = Object.new
def float.call(s)
case s
when 'NaN'
NAN
when 'Infinity'
PLUS_INFINITY
when '-Infinity'
MINUS_INFINITY
else
s.to_f
end
end
date = Object.new
def date.call(s) ::Date.new(*s.split('-').map(&:to_i)) end
TYPE_TRANSLATOR_DATE = date.freeze
bytea = Object.new
def bytea.call(str)
str = if str =~ /\A\\x/
# PostgreSQL 9.0+ bytea hex format
str[2..-1].gsub(/(..)/){|s| s.to_i(16).chr}
else
# Historical PostgreSQL bytea escape format
str.gsub(/\\(\\|'|[0-3][0-7][0-7])/) {|s|
if s.size == 2 then s[1,1] else s[1,3].oct.chr end
}
end
::Sequel::SQL::Blob.new(str)
end
CONVERSION_PROCS = {}
{
[16] => boolean,
[17] => bytea,
[20, 21, 23, 26] => integer,
[700, 701] => float,
[1700] => ::Kernel.method(:BigDecimal),
[1083, 1266] => ::Sequel.method(:string_to_time),
[1082] => ::Sequel.method(:string_to_date),
[1184, 1114] => ::Sequel.method(:database_to_application_timestamp),
}.each do |k,v|
k.each do |n|
CONVERSION_PROCS[n] = v
end
end
CONVERSION_PROCS.freeze
module MockAdapterDatabaseMethods
def bound_variable_arg(arg, conn)
arg
end
def primary_key(table)
:id
end
private
# Handle NoMethodErrors when parsing schema due to output_identifier
# being called with nil when the Database fetch results are not set
# to what schema parsing expects.
def schema_parse_table(table, opts=OPTS)
super
rescue NoMethodError
[]
end
end
def self.mock_adapter_setup(db)
db.instance_exec do
@server_version = 150000
initialize_postgres_adapter
extend(MockAdapterDatabaseMethods)
end
end
class CreateTableGenerator < Sequel::Schema::CreateTableGenerator
# Add an exclusion constraint when creating the table. Elements should be
# an array of 2 element arrays, with the first element being the column or
# expression the exclusion constraint is applied to, and the second element
# being the operator to use for the column/expression to check for exclusion:
#
# exclude([[:col1, '&&'], [:col2, '=']])
# # EXCLUDE USING gist (col1 WITH &&, col2 WITH =)
#
# To use a custom operator class, you need to use Sequel.lit with the expression
# and operator class:
#
# exclude([[Sequel.lit('col1 inet_ops'), '&&'], [:col2, '=']])
# # EXCLUDE USING gist (col1 inet_ops WITH &&, col2 WITH =)
#
# Options supported:
#
# :name :: Name the constraint with the given name (useful if you may
# need to drop the constraint later)
# :using :: Override the index_method for the exclusion constraint (defaults to gist).
# :where :: Create a partial exclusion constraint, which only affects
# a subset of table rows, value should be a filter expression.
def exclude(elements, opts=OPTS)
constraints << {:type => :exclude, :elements => elements}.merge!(opts)
end
end
class AlterTableGenerator < Sequel::Schema::AlterTableGenerator
# Adds an exclusion constraint to an existing table, see
# CreateTableGenerator#exclude.
def add_exclusion_constraint(elements, opts=OPTS)
@operations << {:op => :add_constraint, :type => :exclude, :elements => elements}.merge!(opts)
end
# Validate the constraint with the given name, which should have
# been added previously with NOT VALID.
def validate_constraint(name)
@operations << {:op => :validate_constraint, :name => name}
end
end
# Generator used for creating tables that are partitions of other tables.
class CreatePartitionOfTableGenerator
MINVALUE = Sequel.lit('MINVALUE').freeze
MAXVALUE = Sequel.lit('MAXVALUE').freeze
def initialize(&block)
instance_exec(&block)
end
# The minimum value of the data type used in range partitions, useful
# as an argument to #from.
def minvalue
MINVALUE
end
# The minimum value of the data type used in range partitions, useful
# as an argument to #to.
def maxvalue
MAXVALUE
end
# Assumes range partitioning, sets the inclusive minimum value of the range for
# this partition.
def from(*v)
@from = v
end
# Assumes range partitioning, sets the exclusive maximum value of the range for
# this partition.
def to(*v)
@to = v
end
# Assumes list partitioning, sets the values to be included in this partition.
def values_in(*v)
@in = v
end
# Assumes hash partitioning, sets the modulus for this parition.
def modulus(v)
@modulus = v
end
# Assumes hash partitioning, sets the remainder for this parition.
def remainder(v)
@remainder = v
end
# Sets that this is a default partition, where values not in other partitions
# are stored.
def default
@default = true
end
# The from and to values of this partition for a range partition.
def range
[@from, @to]
end
# The values to include in this partition for a list partition.
def list
@in
end
# The modulus and remainder to use for this partition for a hash partition.
def hash_values
[@modulus, @remainder]
end
# Determine the appropriate partition type for this partition by which methods
# were called on it.
def partition_type
raise Error, "Unable to determine partition type, multiple different partitioning methods called" if [@from || @to, @list, @modulus || @remainder, @default].compact.length > 1
if @from || @to
raise Error, "must call both from and to when creating a partition of a table if calling either" unless @from && @to
:range
elsif @in
:list
elsif @modulus || @remainder
raise Error, "must call both modulus and remainder when creating a partition of a table if calling either" unless @modulus && @remainder
:hash
elsif @default
:default
else
raise Error, "unable to determine partition type, no partitioning methods called"
end
end
end
# Error raised when Sequel determines a PostgreSQL exclusion constraint has been violated.
class ExclusionConstraintViolation < Sequel::ConstraintViolation; end
module DatabaseMethods
include UnmodifiedIdentifiers::DatabaseMethods
FOREIGN_KEY_LIST_ON_DELETE_MAP = {'a'=>:no_action, 'r'=>:restrict, 'c'=>:cascade, 'n'=>:set_null, 'd'=>:set_default}.freeze
ON_COMMIT = {:drop => 'DROP', :delete_rows => 'DELETE ROWS', :preserve_rows => 'PRESERVE ROWS'}.freeze
ON_COMMIT.each_value(&:freeze)
# SQL fragment for custom sequences (ones not created by serial primary key),
# Returning the schema and literal form of the sequence name, by parsing
# the column defaults table.
SELECT_CUSTOM_SEQUENCE_SQL = (<<-end_sql
SELECT name.nspname AS "schema",
CASE
WHEN split_part(pg_get_expr(def.adbin, attr.attrelid), '''', 2) ~ '.' THEN
substr(split_part(pg_get_expr(def.adbin, attr.attrelid), '''', 2),
strpos(split_part(pg_get_expr(def.adbin, attr.attrelid), '''', 2), '.')+1)
ELSE split_part(pg_get_expr(def.adbin, attr.attrelid), '''', 2)
END AS "sequence"
FROM pg_class t
JOIN pg_namespace name ON (t.relnamespace = name.oid)
JOIN pg_attribute attr ON (t.oid = attrelid)
JOIN pg_attrdef def ON (adrelid = attrelid AND adnum = attnum)
JOIN pg_constraint cons ON (conrelid = adrelid AND adnum = conkey[1])
WHERE cons.contype = 'p'
AND pg_get_expr(def.adbin, attr.attrelid) ~* 'nextval'
end_sql
).strip.gsub(/\s+/, ' ').freeze # SEQUEL6: Remove
# SQL fragment for determining primary key column for the given table. Only
# returns the first primary key if the table has a composite primary key.
SELECT_PK_SQL = (<<-end_sql
SELECT pg_attribute.attname AS pk
FROM pg_class, pg_attribute, pg_index, pg_namespace
WHERE pg_class.oid = pg_attribute.attrelid
AND pg_class.relnamespace = pg_namespace.oid
AND pg_class.oid = pg_index.indrelid
AND pg_index.indkey[0] = pg_attribute.attnum
AND pg_index.indisprimary = 't'
end_sql
).strip.gsub(/\s+/, ' ').freeze # SEQUEL6: Remove
# SQL fragment for getting sequence associated with table's
# primary key, assuming it was a serial primary key column.
SELECT_SERIAL_SEQUENCE_SQL = (<<-end_sql
SELECT name.nspname AS "schema", seq.relname AS "sequence"
FROM pg_class seq, pg_attribute attr, pg_depend dep,
pg_namespace name, pg_constraint cons, pg_class t
WHERE seq.oid = dep.objid
AND seq.relnamespace = name.oid
AND seq.relkind = 'S'
AND attr.attrelid = dep.refobjid
AND attr.attnum = dep.refobjsubid
AND attr.attrelid = cons.conrelid
AND attr.attnum = cons.conkey[1]
AND attr.attrelid = t.oid
AND cons.contype = 'p'
end_sql
).strip.gsub(/\s+/, ' ').freeze # SEQUEL6: Remove
# A hash of conversion procs, keyed by type integer (oid) and
# having callable values for the conversion proc for that type.
attr_reader :conversion_procs
# Set a conversion proc for the given oid. The callable can
# be passed either as a argument or a block.
def add_conversion_proc(oid, callable=nil, &block)
conversion_procs[oid] = callable || block
end
# Add a conversion proc for a named type, using the given block.
# This should be used for types without fixed OIDs, which includes all types that
# are not included in a default PostgreSQL installation.
def add_named_conversion_proc(name, &block)
unless oid = from(:pg_type).where(:typtype=>['b', 'e'], :typname=>name.to_s).get(:oid)
raise Error, "No matching type in pg_type for #{name.inspect}"
end
add_conversion_proc(oid, block)
end
def commit_prepared_transaction(transaction_id, opts=OPTS)
run("COMMIT PREPARED #{literal(transaction_id)}", opts)
end
# A hash of metadata for CHECK constraints on the table.
# Keys are CHECK constraint name symbols. Values are hashes with the following keys:
# :definition :: An SQL fragment for the definition of the constraint
# :columns :: An array of column symbols for the columns referenced in the constraint,
# can be an empty array if the database cannot deteremine the column symbols.
def check_constraints(table)
m = output_identifier_meth
hash = {}
_check_constraints_ds.where_each(:conrelid=>regclass_oid(table)) do |row|
constraint = m.call(row[:constraint])
entry = hash[constraint] ||= {:definition=>row[:definition], :columns=>[]}
entry[:columns] << m.call(row[:column]) if row[:column]
end
hash
end
# Convert the first primary key column in the +table+ from being a serial column to being an identity column.
# If the column is already an identity column, assume it was already converted and make no changes.
#
# Only supported on PostgreSQL 10.2+, since on those versions Sequel will use identity columns
# instead of serial columns for auto incrementing primary keys. Only supported when running as
# a superuser, since regular users cannot modify system tables, and there is no way to keep an
# existing sequence when changing an existing column to be an identity column.
#
# This method can raise an exception in at least the following cases where it may otherwise succeed
# (there may be additional cases not listed here):
#
# * The serial column was added after table creation using PostgreSQL <7.3
# * A regular index also exists on the column (such an index can probably be dropped as the
# primary key index should suffice)
#
# Options:
# :column :: Specify the column to convert instead of using the first primary key column
# :server :: Run the SQL on the given server
def convert_serial_to_identity(table, opts=OPTS)
raise Error, "convert_serial_to_identity is only supported on PostgreSQL 10.2+" unless server_version >= 100002
server = opts[:server]
server_hash = server ? {:server=>server} : OPTS
ds = dataset
ds = ds.server(server) if server
raise Error, "convert_serial_to_identity requires superuser permissions" unless ds.get{current_setting('is_superuser')} == 'on'
table_oid = regclass_oid(table)
im = input_identifier_meth
unless column = (opts[:column] || ((sch = schema(table).find{|_, sc| sc[:primary_key] && sc[:auto_increment]}) && sch[0]))
raise Error, "could not determine column to convert from serial to identity automatically"
end
column = im.call(column)
column_num = ds.from(:pg_attribute).
where(:attrelid=>table_oid, :attname=>column).
get(:attnum)
pg_class = Sequel.cast('pg_class', :regclass)
res = ds.from(:pg_depend).
where(:refclassid=>pg_class, :refobjid=>table_oid, :refobjsubid=>column_num, :classid=>pg_class, :objsubid=>0, :deptype=>%w'a i').
select_map([:objid, Sequel.as({:deptype=>'i'}, :v)])
case res.length
when 0
raise Error, "unable to find related sequence when converting serial to identity"
when 1
seq_oid, already_identity = res.first
else
raise Error, "more than one linked sequence found when converting serial to identity"
end
return if already_identity
transaction(server_hash) do
run("ALTER TABLE #{quote_schema_table(table)} ALTER COLUMN #{quote_identifier(column)} DROP DEFAULT", server_hash)
ds.from(:pg_depend).
where(:classid=>pg_class, :objid=>seq_oid, :objsubid=>0, :deptype=>'a').
update(:deptype=>'i')
ds.from(:pg_attribute).
where(:attrelid=>table_oid, :attname=>column).
update(:attidentity=>'d')
end
remove_cached_schema(table)
nil
end
# Creates the function in the database. Arguments:
# name :: name of the function to create
# definition :: string definition of the function, or object file for a dynamically loaded C function.
# opts :: options hash:
# :args :: function arguments, can be either a symbol or string specifying a type or an array of 1-3 elements:
# 1 :: argument data type
# 2 :: argument name
# 3 :: argument mode (e.g. in, out, inout)
# :behavior :: Should be IMMUTABLE, STABLE, or VOLATILE. PostgreSQL assumes VOLATILE by default.
# :parallel :: The thread safety attribute of the function. Should be SAFE, UNSAFE, RESTRICTED. PostgreSQL assumes UNSAFE by default.
# :cost :: The estimated cost of the function, used by the query planner.
# :language :: The language the function uses. SQL is the default.
# :link_symbol :: For a dynamically loaded see function, the function's link symbol if different from the definition argument.
# :returns :: The data type returned by the function. If you are using OUT or INOUT argument modes, this is ignored.
# Otherwise, if this is not specified, void is used by default to specify the function is not supposed to return a value.
# :rows :: The estimated number of rows the function will return. Only use if the function returns SETOF something.
# :security_definer :: Makes the privileges of the function the same as the privileges of the user who defined the function instead of
# the privileges of the user who runs the function. There are security implications when doing this, see the PostgreSQL documentation.
# :set :: Configuration variables to set while the function is being run, can be a hash or an array of two pairs. search_path is
# often used here if :security_definer is used.
# :strict :: Makes the function return NULL when any argument is NULL.
def create_function(name, definition, opts=OPTS)
self << create_function_sql(name, definition, opts)
end
# Create the procedural language in the database. Arguments:
# name :: Name of the procedural language (e.g. plpgsql)
# opts :: options hash:
# :handler :: The name of a previously registered function used as a call handler for this language.
# :replace :: Replace the installed language if it already exists (on PostgreSQL 9.0+).
# :trusted :: Marks the language being created as trusted, allowing unprivileged users to create functions using this language.
# :validator :: The name of previously registered function used as a validator of functions defined in this language.
def create_language(name, opts=OPTS)
self << create_language_sql(name, opts)
end
# Create a schema in the database. Arguments:
# name :: Name of the schema (e.g. admin)
# opts :: options hash:
# :if_not_exists :: Don't raise an error if the schema already exists (PostgreSQL 9.3+)
# :owner :: The owner to set for the schema (defaults to current user if not specified)
def create_schema(name, opts=OPTS)
self << create_schema_sql(name, opts)
end
# Support partitions of tables using the :partition_of option.
def create_table(name, options=OPTS, &block)
if options[:partition_of]
create_partition_of_table_from_generator(name, CreatePartitionOfTableGenerator.new(&block), options)
return
end
super
end
# Support partitions of tables using the :partition_of option.
def create_table?(name, options=OPTS, &block)
if options[:partition_of]
create_table(name, options.merge!(:if_not_exists=>true), &block)
return
end
super
end
# Create a trigger in the database. Arguments:
# table :: the table on which this trigger operates
# name :: the name of this trigger
# function :: the function to call for this trigger, which should return type trigger.
# opts :: options hash:
# :after :: Calls the trigger after execution instead of before.
# :args :: An argument or array of arguments to pass to the function.
# :each_row :: Calls the trigger for each row instead of for each statement.
# :events :: Can be :insert, :update, :delete, or an array of any of those. Calls the trigger whenever that type of statement is used. By default,
# the trigger is called for insert, update, or delete.
# :replace :: Replace the trigger with the same name if it already exists (PostgreSQL 14+).
# :when :: A filter to use for the trigger
def create_trigger(table, name, function, opts=OPTS)
self << create_trigger_sql(table, name, function, opts)
end
def database_type
:postgres
end
# Use PostgreSQL's DO syntax to execute an anonymous code block. The code should
# be the literal code string to use in the underlying procedural language. Options:
#
# :language :: The procedural language the code is written in. The PostgreSQL
# default is plpgsql. Can be specified as a string or a symbol.
def do(code, opts=OPTS)
language = opts[:language]
run "DO #{"LANGUAGE #{literal(language.to_s)} " if language}#{literal(code)}"
end
# Drops the function from the database. Arguments:
# name :: name of the function to drop
# opts :: options hash:
# :args :: The arguments for the function. See create_function_sql.
# :cascade :: Drop other objects depending on this function.
# :if_exists :: Don't raise an error if the function doesn't exist.
def drop_function(name, opts=OPTS)
self << drop_function_sql(name, opts)
end
# Drops a procedural language from the database. Arguments:
# name :: name of the procedural language to drop
# opts :: options hash:
# :cascade :: Drop other objects depending on this function.
# :if_exists :: Don't raise an error if the function doesn't exist.
def drop_language(name, opts=OPTS)
self << drop_language_sql(name, opts)
end
# Drops a schema from the database. Arguments:
# name :: name of the schema to drop
# opts :: options hash:
# :cascade :: Drop all objects in this schema.
# :if_exists :: Don't raise an error if the schema doesn't exist.
def drop_schema(name, opts=OPTS)
self << drop_schema_sql(name, opts)
end
# Drops a trigger from the database. Arguments:
# table :: table from which to drop the trigger
# name :: name of the trigger to drop
# opts :: options hash:
# :cascade :: Drop other objects depending on this function.
# :if_exists :: Don't raise an error if the function doesn't exist.
def drop_trigger(table, name, opts=OPTS)
self << drop_trigger_sql(table, name, opts)
end
# Return full foreign key information using the pg system tables, including
# :name, :on_delete, :on_update, and :deferrable entries in the hashes.
#
# Supports additional options:
# :reverse :: Instead of returning foreign keys in the current table, return
# foreign keys in other tables that reference the current table.
# :schema :: Set to true to have the :table value in the hashes be a qualified
# identifier. Set to false to use a separate :schema value with
# the related schema. Defaults to whether the given table argument
# is a qualified identifier.
def foreign_key_list(table, opts=OPTS)
m = output_identifier_meth
schema, _ = opts.fetch(:schema, schema_and_table(table))
h = {}
fklod_map = FOREIGN_KEY_LIST_ON_DELETE_MAP
reverse = opts[:reverse]
(reverse ? _reverse_foreign_key_list_ds : _foreign_key_list_ds).where_each(Sequel[:cl][:oid]=>regclass_oid(table)) do |row|
if reverse
key = [row[:schema], row[:table], row[:name]]
else
key = row[:name]
end
if r = h[key]
r[:columns] << m.call(row[:column])
r[:key] << m.call(row[:refcolumn])
else
entry = h[key] = {
:name=>m.call(row[:name]),
:columns=>[m.call(row[:column])],
:key=>[m.call(row[:refcolumn])],
:on_update=>fklod_map[row[:on_update]],
:on_delete=>fklod_map[row[:on_delete]],
:deferrable=>row[:deferrable],
:table=>schema ? SQL::QualifiedIdentifier.new(m.call(row[:schema]), m.call(row[:table])) : m.call(row[:table]),
}
unless schema
# If not combining schema information into the :table entry
# include it as a separate entry.
entry[:schema] = m.call(row[:schema])
end
end
end
h.values
end
def freeze
server_version
supports_prepared_transactions?
_schema_ds
_select_serial_sequence_ds
_select_custom_sequence_ds
_select_pk_ds
_indexes_ds
_check_constraints_ds
_foreign_key_list_ds
_reverse_foreign_key_list_ds
@conversion_procs.freeze
super
end
# Use the pg_* system tables to determine indexes on a table
def indexes(table, opts=OPTS)
m = output_identifier_meth
cond = {Sequel[:tab][:oid]=>regclass_oid(table, opts)}
cond[:indpred] = nil unless opts[:include_partial]
indexes = {}
_indexes_ds.where_each(cond) do |r|
i = indexes[m.call(r[:name])] ||= {:columns=>[], :unique=>r[:unique], :deferrable=>r[:deferrable]}
i[:columns] << m.call(r[:column])
end
indexes
end
# Dataset containing all current database locks
def locks
dataset.from(:pg_class).join(:pg_locks, :relation=>:relfilenode).select{[pg_class[:relname], Sequel::SQL::ColumnAll.new(:pg_locks)]}
end
# Notifies the given channel. See the PostgreSQL NOTIFY documentation. Options:
#
# :payload :: The payload string to use for the NOTIFY statement. Only supported
# in PostgreSQL 9.0+.
# :server :: The server to which to send the NOTIFY statement, if the sharding support
# is being used.
def notify(channel, opts=OPTS)
sql = String.new
sql << "NOTIFY "
dataset.send(:identifier_append, sql, channel)
if payload = opts[:payload]
sql << ", "
dataset.literal_append(sql, payload.to_s)
end
execute_ddl(sql, opts)
end
# Return primary key for the given table.
def primary_key(table, opts=OPTS)
quoted_table = quote_schema_table(table)
Sequel.synchronize{return @primary_keys[quoted_table] if @primary_keys.has_key?(quoted_table)}
value = _select_pk_ds.where_single_value(Sequel[:pg_class][:oid] => regclass_oid(table, opts))
Sequel.synchronize{@primary_keys[quoted_table] = value}
end
# Return the sequence providing the default for the primary key for the given table.
def primary_key_sequence(table, opts=OPTS)
quoted_table = quote_schema_table(table)
Sequel.synchronize{return @primary_key_sequences[quoted_table] if @primary_key_sequences.has_key?(quoted_table)}
cond = {Sequel[:t][:oid] => regclass_oid(table, opts)}
value = if pks = _select_serial_sequence_ds.first(cond)
literal(SQL::QualifiedIdentifier.new(pks[:schema], pks[:sequence]))
elsif pks = _select_custom_sequence_ds.first(cond)
literal(SQL::QualifiedIdentifier.new(pks[:schema], LiteralString.new(pks[:sequence])))
end
Sequel.synchronize{@primary_key_sequences[quoted_table] = value} if value
end
# Refresh the materialized view with the given name.
#
# DB.refresh_view(:items_view)
# # REFRESH MATERIALIZED VIEW items_view
# DB.refresh_view(:items_view, concurrently: true)
# # REFRESH MATERIALIZED VIEW CONCURRENTLY items_view
def refresh_view(name, opts=OPTS)
run "REFRESH MATERIALIZED VIEW#{' CONCURRENTLY' if opts[:concurrently]} #{quote_schema_table(name)}"
end
# Reset the primary key sequence for the given table, basing it on the
# maximum current value of the table's primary key.
def reset_primary_key_sequence(table)
return unless seq = primary_key_sequence(table)
pk = SQL::Identifier.new(primary_key(table))
db = self
s, t = schema_and_table(table)
table = Sequel.qualify(s, t) if s
if server_version >= 100000
seq_ds = metadata_dataset.from(:pg_sequence).where(:seqrelid=>regclass_oid(LiteralString.new(seq)))
increment_by = :seqincrement
min_value = :seqmin
# :nocov:
else
seq_ds = metadata_dataset.from(LiteralString.new(seq))
increment_by = :increment_by
min_value = :min_value
# :nocov:
end
get{setval(seq, db[table].select(coalesce(max(pk)+seq_ds.select(increment_by), seq_ds.select(min_value))), false)}
end
def rollback_prepared_transaction(transaction_id, opts=OPTS)
run("ROLLBACK PREPARED #{literal(transaction_id)}", opts)
end
# PostgreSQL uses SERIAL psuedo-type instead of AUTOINCREMENT for
# managing incrementing primary keys.
def serial_primary_key_options
# :nocov:
auto_increment_key = server_version >= 100002 ? :identity : :serial
# :nocov:
{:primary_key => true, auto_increment_key => true, :type=>Integer}
end
# The version of the PostgreSQL server, used for determining capability.
def server_version(server=nil)
return @server_version if @server_version
ds = dataset
ds = ds.server(server) if server
@server_version = swallow_database_error{ds.with_sql("SELECT CAST(current_setting('server_version_num') AS integer) AS v").single_value} || 0
end
# PostgreSQL supports CREATE TABLE IF NOT EXISTS on 9.1+
def supports_create_table_if_not_exists?
server_version >= 90100
end
# PostgreSQL 9.0+ supports some types of deferrable constraints beyond foreign key constraints.
def supports_deferrable_constraints?
server_version >= 90000
end
# PostgreSQL supports deferrable foreign key constraints.
def supports_deferrable_foreign_key_constraints?
true
end
# PostgreSQL supports DROP TABLE IF EXISTS
def supports_drop_table_if_exists?
true
end
# PostgreSQL supports partial indexes.
def supports_partial_indexes?
true
end
# PostgreSQL 9.0+ supports trigger conditions.
def supports_trigger_conditions?
server_version >= 90000
end
# PostgreSQL supports prepared transactions (two-phase commit) if
# max_prepared_transactions is greater than 0.
def supports_prepared_transactions?
return @supports_prepared_transactions if defined?(@supports_prepared_transactions)
@supports_prepared_transactions = self['SHOW max_prepared_transactions'].get.to_i > 0
end
# PostgreSQL supports savepoints
def supports_savepoints?
true
end
# PostgreSQL supports transaction isolation levels
def supports_transaction_isolation_levels?
true
end
# PostgreSQL supports transaction DDL statements.
def supports_transactional_ddl?
true
end
# Array of symbols specifying table names in the current database.
# The dataset used is yielded to the block if one is provided,
# otherwise, an array of symbols of table names is returned.
#
# Options:
# :qualify :: Return the tables as Sequel::SQL::QualifiedIdentifier instances,
# using the schema the table is located in as the qualifier.
# :schema :: The schema to search
# :server :: The server to use
def tables(opts=OPTS, &block)
pg_class_relname(['r', 'p'], opts, &block)
end
# Check whether the given type name string/symbol (e.g. :hstore) is supported by
# the database.
def type_supported?(type)
Sequel.synchronize{return @supported_types[type] if @supported_types.has_key?(type)}
supported = from(:pg_type).where(:typtype=>'b', :typname=>type.to_s).count > 0
Sequel.synchronize{return @supported_types[type] = supported}
end
# Creates a dataset that uses the VALUES clause:
#
# DB.values([[1, 2], [3, 4]])
# # VALUES ((1, 2), (3, 4))
#
# DB.values([[1, 2], [3, 4]]).order(:column2).limit(1, 1)
# # VALUES ((1, 2), (3, 4)) ORDER BY column2 LIMIT 1 OFFSET 1
def values(v)
@default_dataset.clone(:values=>v)
end
# Array of symbols specifying view names in the current database.
#
# Options:
# :materialized :: Return materialized views
# :qualify :: Return the views as Sequel::SQL::QualifiedIdentifier instances,
# using the schema the view is located in as the qualifier.
# :schema :: The schema to search
# :server :: The server to use
def views(opts=OPTS)
relkind = opts[:materialized] ? 'm' : 'v'
pg_class_relname(relkind, opts)
end
private
# Dataset used to retrieve CHECK constraint information
def _check_constraints_ds
@_check_constraints_ds ||= metadata_dataset.
from{pg_constraint.as(:co)}.
left_join(Sequel[:pg_attribute].as(:att), :attrelid=>:conrelid, :attnum=>SQL::Function.new(:ANY, Sequel[:co][:conkey])).
where(:contype=>'c').
select{[co[:conname].as(:constraint), att[:attname].as(:column), pg_get_constraintdef(co[:oid]).as(:definition)]}
end
# Dataset used to retrieve foreign keys referenced by a table
def _foreign_key_list_ds
@_foreign_key_list_ds ||= __foreign_key_list_ds(false)
end
# Dataset used to retrieve foreign keys referencing a table
def _reverse_foreign_key_list_ds
@_reverse_foreign_key_list_ds ||= __foreign_key_list_ds(true)
end
# Build dataset used for foreign key list methods.
def __foreign_key_list_ds(reverse)
if reverse
ctable = Sequel[:att2]
cclass = Sequel[:cl2]
rtable = Sequel[:att]
rclass = Sequel[:cl]
else
ctable = Sequel[:att]
cclass = Sequel[:cl]
rtable = Sequel[:att2]
rclass = Sequel[:cl2]
end
if server_version >= 90500
cpos = Sequel.expr{array_position(co[:conkey], ctable[:attnum])}
rpos = Sequel.expr{array_position(co[:confkey], rtable[:attnum])}
# :nocov:
else
range = 0...32
cpos = Sequel.expr{SQL::CaseExpression.new(range.map{|x| [SQL::Subscript.new(co[:conkey], [x]), x]}, 32, ctable[:attnum])}
rpos = Sequel.expr{SQL::CaseExpression.new(range.map{|x| [SQL::Subscript.new(co[:confkey], [x]), x]}, 32, rtable[:attnum])}
# :nocov:
end
ds = metadata_dataset.
from{pg_constraint.as(:co)}.
join(Sequel[:pg_class].as(cclass), :oid=>:conrelid).
join(Sequel[:pg_attribute].as(ctable), :attrelid=>:oid, :attnum=>SQL::Function.new(:ANY, Sequel[:co][:conkey])).
join(Sequel[:pg_class].as(rclass), :oid=>Sequel[:co][:confrelid]).
join(Sequel[:pg_attribute].as(rtable), :attrelid=>:oid, :attnum=>SQL::Function.new(:ANY, Sequel[:co][:confkey])).
join(Sequel[:pg_namespace].as(:nsp), :oid=>Sequel[:cl2][:relnamespace]).
order{[co[:conname], cpos]}.
where{{
cl[:relkind]=>%w'r p',
co[:contype]=>'f',
cpos=>rpos
}}.
select{[
co[:conname].as(:name),
ctable[:attname].as(:column),
co[:confupdtype].as(:on_update),
co[:confdeltype].as(:on_delete),
cl2[:relname].as(:table),
rtable[:attname].as(:refcolumn),
SQL::BooleanExpression.new(:AND, co[:condeferrable], co[:condeferred]).as(:deferrable),
nsp[:nspname].as(:schema)
]}
if reverse
ds = ds.order_append(Sequel[:nsp][:nspname], Sequel[:cl2][:relname])
end
ds
end
# Dataset used to retrieve index information
def _indexes_ds
@_indexes_ds ||= begin
if server_version >= 90500
order = [Sequel[:indc][:relname], Sequel.function(:array_position, Sequel[:ind][:indkey], Sequel[:att][:attnum])]
# :nocov:
else
range = 0...32
order = [Sequel[:indc][:relname], SQL::CaseExpression.new(range.map{|x| [SQL::Subscript.new(Sequel[:ind][:indkey], [x]), x]}, 32, Sequel[:att][:attnum])]
# :nocov:
end
attnums = SQL::Function.new(:ANY, Sequel[:ind][:indkey])
ds = metadata_dataset.
from{pg_class.as(:tab)}.
join(Sequel[:pg_index].as(:ind), :indrelid=>:oid).
join(Sequel[:pg_class].as(:indc), :oid=>:indexrelid).
join(Sequel[:pg_attribute].as(:att), :attrelid=>Sequel[:tab][:oid], :attnum=>attnums).
left_join(Sequel[:pg_constraint].as(:con), :conname=>Sequel[:indc][:relname]).
where{{
indc[:relkind]=>'i',
ind[:indisprimary]=>false,
:indexprs=>nil,
:indisvalid=>true}}.
order(*order).
select{[indc[:relname].as(:name), ind[:indisunique].as(:unique), att[:attname].as(:column), con[:condeferrable].as(:deferrable)]}
# :nocov:
ds = ds.where(:indisready=>true) if server_version >= 80300
ds = ds.where(:indislive=>true) if server_version >= 90300
# :nocov:
ds
end
end
# Dataset used to determine custom serial sequences for tables
def _select_custom_sequence_ds
@_select_custom_sequence_ds ||= metadata_dataset.
from{pg_class.as(:t)}.
join(:pg_namespace, {:oid => :relnamespace}, :table_alias=>:name).
join(:pg_attribute, {:attrelid => Sequel[:t][:oid]}, :table_alias=>:attr).
join(:pg_attrdef, {:adrelid => :attrelid, :adnum => :attnum}, :table_alias=>:def).
join(:pg_constraint, {:conrelid => :adrelid, Sequel[:cons][:conkey].sql_subscript(1) => :adnum}, :table_alias=>:cons).
where{{cons[:contype] => 'p', pg_get_expr(self.def[:adbin], attr[:attrelid]) => /nextval/i}}.
select{
expr = split_part(pg_get_expr(self.def[:adbin], attr[:attrelid]), "'", 2)
[
name[:nspname].as(:schema),
Sequel.case({{expr => /./} => substr(expr, strpos(expr, '.')+1)}, expr).as(:sequence)
]
}
end
# Dataset used to determine normal serial sequences for tables
def _select_serial_sequence_ds
@_serial_sequence_ds ||= metadata_dataset.
from{[
pg_class.as(:seq),
pg_attribute.as(:attr),
pg_depend.as(:dep),
pg_namespace.as(:name),
pg_constraint.as(:cons),
pg_class.as(:t)
]}.
where{[
[seq[:oid], dep[:objid]],
[seq[:relnamespace], name[:oid]],
[seq[:relkind], 'S'],
[attr[:attrelid], dep[:refobjid]],
[attr[:attnum], dep[:refobjsubid]],
[attr[:attrelid], cons[:conrelid]],
[attr[:attnum], cons[:conkey].sql_subscript(1)],
[attr[:attrelid], t[:oid]],
[cons[:contype], 'p']
]}.
select{[
name[:nspname].as(:schema),
seq[:relname].as(:sequence)
]}
end
# Dataset used to determine primary keys for tables
def _select_pk_ds
@_select_pk_ds ||= metadata_dataset.
from(:pg_class, :pg_attribute, :pg_index, :pg_namespace).
where{[
[pg_class[:oid], pg_attribute[:attrelid]],
[pg_class[:relnamespace], pg_namespace[:oid]],
[pg_class[:oid], pg_index[:indrelid]],
[pg_index[:indkey].sql_subscript(0), pg_attribute[:attnum]],
[pg_index[:indisprimary], 't']
]}.
select{pg_attribute[:attname].as(:pk)}
end
# Dataset used to get schema for tables
def _schema_ds
@_schema_ds ||= begin
ds = metadata_dataset.select{[
pg_attribute[:attname].as(:name),
SQL::Cast.new(pg_attribute[:atttypid], :integer).as(:oid),
SQL::Cast.new(basetype[:oid], :integer).as(:base_oid),
SQL::Function.new(:format_type, basetype[:oid], pg_type[:typtypmod]).as(:db_base_type),
SQL::Function.new(:format_type, pg_type[:oid], pg_attribute[:atttypmod]).as(:db_type),
SQL::Function.new(:pg_get_expr, pg_attrdef[:adbin], pg_class[:oid]).as(:default),
SQL::BooleanExpression.new(:NOT, pg_attribute[:attnotnull]).as(:allow_null),
SQL::Function.new(:COALESCE, SQL::BooleanExpression.from_value_pairs(pg_attribute[:attnum] => SQL::Function.new(:ANY, pg_index[:indkey])), false).as(:primary_key)]}.
from(:pg_class).
join(:pg_attribute, :attrelid=>:oid).
join(:pg_type, :oid=>:atttypid).
left_outer_join(Sequel[:pg_type].as(:basetype), :oid=>:typbasetype).
left_outer_join(:pg_attrdef, :adrelid=>Sequel[:pg_class][:oid], :adnum=>Sequel[:pg_attribute][:attnum]).
left_outer_join(:pg_index, :indrelid=>Sequel[:pg_class][:oid], :indisprimary=>true).
where{{pg_attribute[:attisdropped]=>false}}.
where{pg_attribute[:attnum] > 0}.
order{pg_attribute[:attnum]}
# :nocov:
if server_version > 100000
# :nocov:
ds = ds.select_append{pg_attribute[:attidentity]}
# :nocov:
if server_version > 120000
# :nocov:
ds = ds.select_append{Sequel.~(pg_attribute[:attgenerated]=>'').as(:generated)}
end
end
ds
end
end
def alter_table_add_column_sql(table, op)
"ADD COLUMN#{' IF NOT EXISTS' if op[:if_not_exists]} #{column_definition_sql(op)}"
end
def alter_table_generator_class
Postgres::AlterTableGenerator
end
def alter_table_set_column_type_sql(table, op)
s = super
if using = op[:using]
using = Sequel::LiteralString.new(using) if using.is_a?(String)
s += ' USING '
s << literal(using)
end
s
end
def alter_table_drop_column_sql(table, op)
"DROP COLUMN #{'IF EXISTS ' if op[:if_exists]}#{quote_identifier(op[:name])}#{' CASCADE' if op[:cascade]}"
end
def alter_table_validate_constraint_sql(table, op)
"VALIDATE CONSTRAINT #{quote_identifier(op[:name])}"
end
# If the :synchronous option is given and non-nil, set synchronous_commit
# appropriately. Valid values for the :synchronous option are true,
# :on, false, :off, :local, and :remote_write.
def begin_new_transaction(conn, opts)
super
if opts.has_key?(:synchronous)
case sync = opts[:synchronous]
when true
sync = :on
when false
sync = :off
when nil
return
end
log_connection_execute(conn, "SET LOCAL synchronous_commit = #{sync}")
end
end
# Set the READ ONLY transaction setting per savepoint, as PostgreSQL supports that.
def begin_savepoint(conn, opts)
super
unless (read_only = opts[:read_only]).nil?
log_connection_execute(conn, "SET TRANSACTION READ #{read_only ? 'ONLY' : 'WRITE'}")
end
end
# Literalize non-String collate options. This is because unquoted collatations
# are folded to lowercase, and PostgreSQL used mixed case or capitalized collations.
def column_definition_collate_sql(sql, column)
if collate = column[:collate]
collate = literal(collate) unless collate.is_a?(String)
sql << " COLLATE #{collate}"
end
end
# Support identity columns, but only use the identity SQL syntax if no
# default value is given.
def column_definition_default_sql(sql, column)
super
if !column[:serial] && !['smallserial', 'serial', 'bigserial'].include?(column[:type].to_s) && !column[:default]
if (identity = column[:identity])
sql << " GENERATED "
sql << (identity == :always ? "ALWAYS" : "BY DEFAULT")
sql << " AS IDENTITY"
elsif (generated = column[:generated_always_as])
sql << " GENERATED ALWAYS AS (#{literal(generated)}) STORED"
end
end
end
# Handle PostgreSQL specific default format.
def column_schema_normalize_default(default, type)
if m = /\A(?:B?('.*')::[^']+|\((-?\d+(?:\.\d+)?)\))\z/.match(default)
default = m[1] || m[2]
end
super(default, type)
end
# If the :prepare option is given and we aren't in a savepoint,
# prepare the transaction for a two-phase commit.
def commit_transaction(conn, opts=OPTS)
if (s = opts[:prepare]) && savepoint_level(conn) <= 1
log_connection_execute(conn, "PREPARE TRANSACTION #{literal(s)}")
else
super
end
end
# PostgreSQL can't combine rename_column operations, and it can combine
# the custom validate_constraint operation.
def combinable_alter_table_op?(op)
(super || op[:op] == :validate_constraint) && op[:op] != :rename_column
end
VALID_CLIENT_MIN_MESSAGES = %w'DEBUG5 DEBUG4 DEBUG3 DEBUG2 DEBUG1 LOG NOTICE WARNING ERROR FATAL PANIC'.freeze.each(&:freeze)
# The SQL queries to execute when starting a new connection.
def connection_configuration_sqls(opts=@opts)
sqls = []
sqls << "SET standard_conforming_strings = ON" if typecast_value_boolean(opts.fetch(:force_standard_strings, true))
cmm = opts.fetch(:client_min_messages, :warning)
if cmm && !cmm.to_s.empty?
cmm = cmm.to_s.upcase.strip
unless VALID_CLIENT_MIN_MESSAGES.include?(cmm)
raise Error, "Unsupported client_min_messages setting: #{cmm}"
end
sqls << "SET client_min_messages = '#{cmm.to_s.upcase}'"
end
if search_path = opts[:search_path]
case search_path
when String
search_path = search_path.split(",").map(&:strip)
when Array
# nil
else
raise Error, "unrecognized value for :search_path option: #{search_path.inspect}"
end
sqls << "SET search_path = #{search_path.map{|s| "\"#{s.gsub('"', '""')}\""}.join(',')}"
end
sqls
end
# Handle exclusion constraints.
def constraint_definition_sql(constraint)
case constraint[:type]
when :exclude
elements = constraint[:elements].map{|c, op| "#{literal(c)} WITH #{op}"}.join(', ')
sql = String.new
sql << "#{"CONSTRAINT #{quote_identifier(constraint[:name])} " if constraint[:name]}EXCLUDE USING #{constraint[:using]||'gist'} (#{elements})#{" WHERE #{filter_expr(constraint[:where])}" if constraint[:where]}"
constraint_deferrable_sql_append(sql, constraint[:deferrable])
sql
when :foreign_key, :check
sql = super
if constraint[:not_valid]
sql << " NOT VALID"
end
sql
else
super
end
end
def database_specific_error_class_from_sqlstate(sqlstate)
if sqlstate == '23P01'
ExclusionConstraintViolation
elsif sqlstate == '40P01'
SerializationFailure
elsif sqlstate == '55P03'
DatabaseLockTimeout
else
super
end
end
DATABASE_ERROR_REGEXPS = [
# Add this check first, since otherwise it's possible for users to control
# which exception class is generated.
[/invalid input syntax/, DatabaseError],
[/duplicate key value violates unique constraint/, UniqueConstraintViolation],
[/violates foreign key constraint/, ForeignKeyConstraintViolation],
[/violates check constraint/, CheckConstraintViolation],
[/violates not-null constraint/, NotNullConstraintViolation],
[/conflicting key value violates exclusion constraint/, ExclusionConstraintViolation],
[/could not serialize access/, SerializationFailure],
[/could not obtain lock on row in relation/, DatabaseLockTimeout],
].freeze
def database_error_regexps
DATABASE_ERROR_REGEXPS
end
# SQL for doing fast table insert from stdin.
def copy_into_sql(table, opts)
sql = String.new
sql << "COPY #{literal(table)}"
if cols = opts[:columns]
sql << literal(Array(cols))
end
sql << " FROM STDIN"
if opts[:options] || opts[:format]
sql << " ("
sql << "FORMAT #{opts[:format]}" if opts[:format]
sql << "#{', ' if opts[:format]}#{opts[:options]}" if opts[:options]
sql << ')'
end
sql
end
# SQL for doing fast table output to stdout.
def copy_table_sql(table, opts)
if table.is_a?(String)
table
else
if opts[:options] || opts[:format]
options = String.new
options << " ("
options << "FORMAT #{opts[:format]}" if opts[:format]
options << "#{', ' if opts[:format]}#{opts[:options]}" if opts[:options]
options << ')'
end
table = if table.is_a?(::Sequel::Dataset)
"(#{table.sql})"
else
literal(table)
end
"COPY #{table} TO STDOUT#{options}"
end
end
# SQL statement to create database function.
def create_function_sql(name, definition, opts=OPTS)
args = opts[:args]
if !opts[:args].is_a?(Array) || !opts[:args].any?{|a| Array(a).length == 3 and %w'OUT INOUT'.include?(a[2].to_s)}
returns = opts[:returns] || 'void'
end
language = opts[:language] || 'SQL'
<<-END
CREATE#{' OR REPLACE' if opts[:replace]} FUNCTION #{name}#{sql_function_args(args)}
#{"RETURNS #{returns}" if returns}
LANGUAGE #{language}
#{opts[:behavior].to_s.upcase if opts[:behavior]}
#{'STRICT' if opts[:strict]}
#{'SECURITY DEFINER' if opts[:security_definer]}
#{"PARALLEL #{opts[:parallel].to_s.upcase}" if opts[:parallel]}
#{"COST #{opts[:cost]}" if opts[:cost]}
#{"ROWS #{opts[:rows]}" if opts[:rows]}
#{opts[:set].map{|k,v| " SET #{k} = #{v}"}.join("\n") if opts[:set]}
AS #{literal(definition.to_s)}#{", #{literal(opts[:link_symbol].to_s)}" if opts[:link_symbol]}
END
end
# SQL for creating a procedural language.
def create_language_sql(name, opts=OPTS)
"CREATE#{' OR REPLACE' if opts[:replace] && server_version >= 90000}#{' TRUSTED' if opts[:trusted]} LANGUAGE #{name}#{" HANDLER #{opts[:handler]}" if opts[:handler]}#{" VALIDATOR #{opts[:validator]}" if opts[:validator]}"
end
# Create a partition of another table, used when the create_table with
# the :partition_of option is given.
def create_partition_of_table_from_generator(name, generator, options)
execute_ddl(create_partition_of_table_sql(name, generator, options))
end
# SQL for creating a partition of another table.
def create_partition_of_table_sql(name, generator, options)
sql = create_table_prefix_sql(name, options).dup
sql << " PARTITION OF #{quote_schema_table(options[:partition_of])}"
case generator.partition_type
when :range
from, to = generator.range
sql << " FOR VALUES FROM #{literal(from)} TO #{literal(to)}"
when :list
sql << " FOR VALUES IN #{literal(generator.list)}"
when :hash
mod, remainder = generator.hash_values
sql << " FOR VALUES WITH (MODULUS #{literal(mod)}, REMAINDER #{literal(remainder)})"
else # when :default
sql << " DEFAULT"
end
sql << create_table_suffix_sql(name, options)
sql
end
# SQL for creating a schema.
def create_schema_sql(name, opts=OPTS)
"CREATE SCHEMA #{'IF NOT EXISTS ' if opts[:if_not_exists]}#{quote_identifier(name)}#{" AUTHORIZATION #{literal(opts[:owner])}" if opts[:owner]}"
end
# DDL statement for creating a table with the given name, columns, and options
def create_table_prefix_sql(name, options)
prefix_sql = if options[:temp]
raise(Error, "can't provide both :temp and :unlogged to create_table") if options[:unlogged]
raise(Error, "can't provide both :temp and :foreign to create_table") if options[:foreign]
temporary_table_sql
elsif options[:foreign]
raise(Error, "can't provide both :foreign and :unlogged to create_table") if options[:unlogged]
'FOREIGN '
elsif options[:unlogged]
'UNLOGGED '
end
"CREATE #{prefix_sql}TABLE#{' IF NOT EXISTS' if options[:if_not_exists]} #{options[:temp] ? quote_identifier(name) : quote_schema_table(name)}"
end
# SQL for creating a table with PostgreSQL specific options
def create_table_sql(name, generator, options)
"#{super}#{create_table_suffix_sql(name, options)}"
end
# Handle various PostgreSQl specific table extensions such as inheritance,
# partitioning, tablespaces, and foreign tables.
def create_table_suffix_sql(name, options)
sql = String.new
if inherits = options[:inherits]
sql << " INHERITS (#{Array(inherits).map{|t| quote_schema_table(t)}.join(', ')})"
end
if partition_by = options[:partition_by]
sql << " PARTITION BY #{options[:partition_type]||'RANGE'} #{literal(Array(partition_by))}"
end
if on_commit = options[:on_commit]
raise(Error, "can't provide :on_commit without :temp to create_table") unless options[:temp]
raise(Error, "unsupported on_commit option: #{on_commit.inspect}") unless ON_COMMIT.has_key?(on_commit)
sql << " ON COMMIT #{ON_COMMIT[on_commit]}"
end
if tablespace = options[:tablespace]
sql << " TABLESPACE #{quote_identifier(tablespace)}"
end
if server = options[:foreign]
sql << " SERVER #{quote_identifier(server)}"
if foreign_opts = options[:options]
sql << " OPTIONS (#{foreign_opts.map{|k, v| "#{k} #{literal(v.to_s)}"}.join(', ')})"
end
end
sql
end
def create_table_as_sql(name, sql, options)
result = create_table_prefix_sql name, options
if on_commit = options[:on_commit]
result += " ON COMMIT #{ON_COMMIT[on_commit]}"
end
result += " AS #{sql}"
end
def create_table_generator_class
Postgres::CreateTableGenerator
end
# SQL for creating a database trigger.
def create_trigger_sql(table, name, function, opts=OPTS)
events = opts[:events] ? Array(opts[:events]) : [:insert, :update, :delete]
whence = opts[:after] ? 'AFTER' : 'BEFORE'
if filter = opts[:when]
raise Error, "Trigger conditions are not supported for this database" unless supports_trigger_conditions?
filter = " WHEN #{filter_expr(filter)}"
end
"CREATE #{'OR REPLACE ' if opts[:replace]}TRIGGER #{name} #{whence} #{events.map{|e| e.to_s.upcase}.join(' OR ')} ON #{quote_schema_table(table)}#{' FOR EACH ROW' if opts[:each_row]}#{filter} EXECUTE PROCEDURE #{function}(#{Array(opts[:args]).map{|a| literal(a)}.join(', ')})"
end
# DDL fragment for initial part of CREATE VIEW statement
def create_view_prefix_sql(name, options)
sql = create_view_sql_append_columns("CREATE #{'OR REPLACE 'if options[:replace]}#{'TEMPORARY 'if options[:temp]}#{'RECURSIVE ' if options[:recursive]}#{'MATERIALIZED ' if options[:materialized]}VIEW #{quote_schema_table(name)}", options[:columns] || options[:recursive])
if options[:security_invoker]
sql += " WITH (security_invoker)"
end
if tablespace = options[:tablespace]
sql += " TABLESPACE #{quote_identifier(tablespace)}"
end
sql
end
# SQL for dropping a function from the database.
def drop_function_sql(name, opts=OPTS)
"DROP FUNCTION#{' IF EXISTS' if opts[:if_exists]} #{name}#{sql_function_args(opts[:args])}#{' CASCADE' if opts[:cascade]}"
end
# Support :if_exists, :cascade, and :concurrently options.
def drop_index_sql(table, op)
sch, _ = schema_and_table(table)
"DROP INDEX#{' CONCURRENTLY' if op[:concurrently]}#{' IF EXISTS' if op[:if_exists]} #{"#{quote_identifier(sch)}." if sch}#{quote_identifier(op[:name] || default_index_name(table, op[:columns]))}#{' CASCADE' if op[:cascade]}"
end
# SQL for dropping a procedural language from the database.
def drop_language_sql(name, opts=OPTS)
"DROP LANGUAGE#{' IF EXISTS' if opts[:if_exists]} #{name}#{' CASCADE' if opts[:cascade]}"
end
# SQL for dropping a schema from the database.
def drop_schema_sql(name, opts=OPTS)
"DROP SCHEMA#{' IF EXISTS' if opts[:if_exists]} #{quote_identifier(name)}#{' CASCADE' if opts[:cascade]}"
end
# SQL for dropping a trigger from the database.
def drop_trigger_sql(table, name, opts=OPTS)
"DROP TRIGGER#{' IF EXISTS' if opts[:if_exists]} #{name} ON #{quote_schema_table(table)}#{' CASCADE' if opts[:cascade]}"
end
# Support :foreign tables
def drop_table_sql(name, options)
"DROP#{' FOREIGN' if options[:foreign]} TABLE#{' IF EXISTS' if options[:if_exists]} #{quote_schema_table(name)}#{' CASCADE' if options[:cascade]}"
end
# SQL for dropping a view from the database.
def drop_view_sql(name, opts=OPTS)
"DROP #{'MATERIALIZED ' if opts[:materialized]}VIEW#{' IF EXISTS' if opts[:if_exists]} #{quote_schema_table(name)}#{' CASCADE' if opts[:cascade]}"
end
# If opts includes a :schema option, use it, otherwise restrict the filter to only the
# currently visible schemas.
def filter_schema(ds, opts)
expr = if schema = opts[:schema]
schema.to_s
else
Sequel.function(:any, Sequel.function(:current_schemas, false))
end
ds.where{{pg_namespace[:nspname]=>expr}}
end
def index_definition_sql(table_name, index)
cols = index[:columns]
index_name = index[:name] || default_index_name(table_name, cols)
expr = if o = index[:opclass]
"(#{Array(cols).map{|c| "#{literal(c)} #{o}"}.join(', ')})"
else
literal(Array(cols))
end
if_not_exists = " IF NOT EXISTS" if index[:if_not_exists]
unique = "UNIQUE " if index[:unique]
index_type = index[:type]
filter = index[:where] || index[:filter]
filter = " WHERE #{filter_expr(filter)}" if filter
nulls_distinct = " NULLS#{' NOT' if index[:nulls_distinct] == false} DISTINCT" unless index[:nulls_distinct].nil?
case index_type
when :full_text
expr = "(to_tsvector(#{literal(index[:language] || 'simple')}::regconfig, #{literal(dataset.send(:full_text_string_join, cols))}))"
index_type = index[:index_type] || :gin
when :spatial
index_type = :gist
end
"CREATE #{unique}INDEX#{' CONCURRENTLY' if index[:concurrently]}#{if_not_exists} #{quote_identifier(index_name)} ON #{quote_schema_table(table_name)} #{"USING #{index_type} " if index_type}#{expr}#{" INCLUDE #{literal(Array(index[:include]))}" if index[:include]}#{nulls_distinct}#{" TABLESPACE #{quote_identifier(index[:tablespace])}" if index[:tablespace]}#{filter}"
end
# Setup datastructures shared by all postgres adapters.
def initialize_postgres_adapter
@primary_keys = {}
@primary_key_sequences = {}
@supported_types = {}
procs = @conversion_procs = CONVERSION_PROCS.dup
procs[1184] = procs[1114] = method(:to_application_timestamp)
end
# Backbone of the tables and views support.
def pg_class_relname(type, opts)
ds = metadata_dataset.from(:pg_class).where(:relkind=>type).select(:relname).server(opts[:server]).join(:pg_namespace, :oid=>:relnamespace)
ds = filter_schema(ds, opts)
m = output_identifier_meth
if defined?(yield)
yield(ds)
elsif opts[:qualify]
ds.select_append{pg_namespace[:nspname]}.map{|r| Sequel.qualify(m.call(r[:nspname]).to_s, m.call(r[:relname]).to_s)}
else
ds.map{|r| m.call(r[:relname])}
end
end
# Return an expression the oid for the table expr. Used by the metadata parsing
# code to disambiguate unqualified tables.
def regclass_oid(expr, opts=OPTS)
if expr.is_a?(String) && !expr.is_a?(LiteralString)
expr = Sequel.identifier(expr)
end
sch, table = schema_and_table(expr)
sch ||= opts[:schema]
if sch
expr = Sequel.qualify(sch, table)
end
expr = if ds = opts[:dataset]
ds.literal(expr)
else
literal(expr)
end
Sequel.cast(expr.to_s,:regclass).cast(:oid)
end
# Remove the cached entries for primary keys and sequences when a table is changed.
def remove_cached_schema(table)
tab = quote_schema_table(table)
Sequel.synchronize do
@primary_keys.delete(tab)
@primary_key_sequences.delete(tab)
end
super
end
# SQL DDL statement for renaming a table. PostgreSQL doesn't allow you to change a table's schema in
# a rename table operation, so speciying a new schema in new_name will not have an effect.
def rename_table_sql(name, new_name)
"ALTER TABLE #{quote_schema_table(name)} RENAME TO #{quote_identifier(schema_and_table(new_name).last)}"
end
def schema_column_type(db_type)
case db_type
when /\Ainterval\z/io
:interval
when /\Acitext\z/io
:string
else
super
end
end
# The dataset used for parsing table schemas, using the pg_* system catalogs.
def schema_parse_table(table_name, opts)
m = output_identifier_meth(opts[:dataset])
_schema_ds.where_all(Sequel[:pg_class][:oid]=>regclass_oid(table_name, opts)).map do |row|
row[:default] = nil if blank_object?(row[:default])
if row[:base_oid]
row[:domain_oid] = row[:oid]
row[:oid] = row.delete(:base_oid)
row[:db_domain_type] = row[:db_type]
row[:db_type] = row.delete(:db_base_type)
else
row.delete(:base_oid)
row.delete(:db_base_type)
end
row[:type] = schema_column_type(row[:db_type])
identity = row.delete(:attidentity)
if row[:primary_key]
row[:auto_increment] = !!(row[:default] =~ /\A(?:nextval)/i) || identity == 'a' || identity == 'd'
end
[m.call(row.delete(:name)), row]
end
end
# Set the transaction isolation level on the given connection
def set_transaction_isolation(conn, opts)
level = opts.fetch(:isolation, transaction_isolation_level)
read_only = opts[:read_only]
deferrable = opts[:deferrable]
if level || !read_only.nil? || !deferrable.nil?
sql = String.new
sql << "SET TRANSACTION"
sql << " ISOLATION LEVEL #{Sequel::Database::TRANSACTION_ISOLATION_LEVELS[level]}" if level
sql << " READ #{read_only ? 'ONLY' : 'WRITE'}" unless read_only.nil?
sql << " #{'NOT ' unless deferrable}DEFERRABLE" unless deferrable.nil?
log_connection_execute(conn, sql)
end
end
# Turns an array of argument specifiers into an SQL fragment used for function arguments. See create_function_sql.
def sql_function_args(args)
"(#{Array(args).map{|a| Array(a).reverse.join(' ')}.join(', ')})"
end
# PostgreSQL can combine multiple alter table ops into a single query.
def supports_combining_alter_table_ops?
true
end
# PostgreSQL supports CREATE OR REPLACE VIEW.
def supports_create_or_replace_view?
true
end
# Handle bigserial type if :serial option is present
def type_literal_generic_bignum_symbol(column)
column[:serial] ? :bigserial : super
end
# PostgreSQL uses the bytea data type for blobs
def type_literal_generic_file(column)
:bytea
end
# Handle serial type if :serial option is present
def type_literal_generic_integer(column)
column[:serial] ? :serial : super
end
# PostgreSQL prefers the text datatype. If a fixed size is requested,
# the char type is used. If the text type is specifically
# disallowed or there is a size specified, use the varchar type.
# Otherwise use the text type.
def type_literal_generic_string(column)
if column[:text]
:text
elsif column[:fixed]
"char(#{column[:size]||default_string_column_size})"
elsif column[:text] == false || column[:size]
"varchar(#{column[:size]||default_string_column_size})"
else
:text
end
end
# PostgreSQL 9.4+ supports views with check option.
def view_with_check_option_support
# :nocov:
:local if server_version >= 90400
# :nocov:
end
end
module DatasetMethods
include UnmodifiedIdentifiers::DatasetMethods
NULL = LiteralString.new('NULL').freeze
LOCK_MODES = ['ACCESS SHARE', 'ROW SHARE', 'ROW EXCLUSIVE', 'SHARE UPDATE EXCLUSIVE', 'SHARE', 'SHARE ROW EXCLUSIVE', 'EXCLUSIVE', 'ACCESS EXCLUSIVE'].each(&:freeze).freeze
Dataset.def_sql_method(self, :delete, [['if server_version >= 90100', %w'with delete from using where returning'], ['else', %w'delete from using where returning']])
Dataset.def_sql_method(self, :insert, [['if server_version >= 90500', %w'with insert into columns override values conflict returning'], ['elsif server_version >= 90100', %w'with insert into columns values returning'], ['else', %w'insert into columns values returning']])
Dataset.def_sql_method(self, :select, [['if opts[:values]', %w'values order limit'], ['elsif server_version >= 80400', %w'with select distinct columns from join where group having window compounds order limit lock'], ['else', %w'select distinct columns from join where group having compounds order limit lock']])
Dataset.def_sql_method(self, :update, [['if server_version >= 90100', %w'with update table set from where returning'], ['else', %w'update table set from where returning']])
# Return the results of an EXPLAIN ANALYZE query as a string
def analyze
explain(:analyze=>true)
end
# Handle converting the ruby xor operator (^) into the
# PostgreSQL xor operator (#), and use the ILIKE and NOT ILIKE
# operators.
def complex_expression_sql_append(sql, op, args)
case op
when :^
j = ' # '
c = false
args.each do |a|
sql << j if c
literal_append(sql, a)
c ||= true
end
when :ILIKE, :'NOT ILIKE'
sql << '('
literal_append(sql, args[0])
sql << ' ' << op.to_s << ' '
literal_append(sql, args[1])
sql << " ESCAPE "
literal_append(sql, "\\")
sql << ')'
else
super
end
end
# Disables automatic use of INSERT ... RETURNING. You can still use
# returning manually to force the use of RETURNING when inserting.
#
# This is designed for cases where INSERT RETURNING cannot be used,
# such as when you are using partitioning with trigger functions
# or conditional rules, or when you are using a PostgreSQL version
# less than 8.2, or a PostgreSQL derivative that does not support
# returning.
#
# Note that when this method is used, insert will not return the
# primary key of the inserted row, you will have to get the primary
# key of the inserted row before inserting via nextval, or after
# inserting via currval or lastval (making sure to use the same
# database connection for currval or lastval).
def disable_insert_returning
clone(:disable_insert_returning=>true)
end
# Return the results of an EXPLAIN query as a string
def explain(opts=OPTS)
with_sql((opts[:analyze] ? 'EXPLAIN ANALYZE ' : 'EXPLAIN ') + select_sql).map(:'QUERY PLAN').join("\r\n")
end
# Return a cloned dataset which will use FOR SHARE to lock returned rows.
def for_share
lock_style(:share)
end
# Run a full text search on PostgreSQL. By default, searching for the inclusion
# of any of the terms in any of the cols.
#
# Options:
# :headline :: Append a expression to the selected columns aliased to headline that
# contains an extract of the matched text.
# :language :: The language to use for the search (default: 'simple')
# :plain :: Whether a plain search should be used (default: false). In this case,
# terms should be a single string, and it will do a search where cols
# contains all of the words in terms. This ignores search operators in terms.
# :phrase :: Similar to :plain, but also adding an ILIKE filter to ensure that
# returned rows also include the exact phrase used.
# :rank :: Set to true to order by the rank, so that closer matches are returned first.
# :to_tsquery :: Can be set to :plain or :phrase to specify the function to use to
# convert the terms to a ts_query.
# :tsquery :: Specifies the terms argument is already a valid SQL expression returning a
# tsquery, and can be used directly in the query.
# :tsvector :: Specifies the cols argument is already a valid SQL expression returning a
# tsvector, and can be used directly in the query.
def full_text_search(cols, terms, opts = OPTS)
lang = Sequel.cast(opts[:language] || 'simple', :regconfig)
unless opts[:tsvector]
phrase_cols = full_text_string_join(cols)
cols = Sequel.function(:to_tsvector, lang, phrase_cols)
end
unless opts[:tsquery]
phrase_terms = terms.is_a?(Array) ? terms.join(' | ') : terms
query_func = case to_tsquery = opts[:to_tsquery]
when :phrase, :plain
:"#{to_tsquery}to_tsquery"
else
(opts[:phrase] || opts[:plain]) ? :plainto_tsquery : :to_tsquery
end
terms = Sequel.function(query_func, lang, phrase_terms)
end
ds = where(Sequel.lit(["", " @@ ", ""], cols, terms))
if opts[:phrase]
raise Error, "can't use :phrase with either :tsvector or :tsquery arguments to full_text_search together" if opts[:tsvector] || opts[:tsquery]
ds = ds.grep(phrase_cols, "%#{escape_like(phrase_terms)}%", :case_insensitive=>true)
end
if opts[:rank]
ds = ds.reverse{ts_rank_cd(cols, terms)}
end
if opts[:headline]
ds = ds.select_append{ts_headline(lang, phrase_cols, terms).as(:headline)}
end
ds
end
# Insert given values into the database.
def insert(*values)
if @opts[:returning]
# Already know which columns to return, let the standard code handle it
super
elsif @opts[:sql] || @opts[:disable_insert_returning]
# Raw SQL used or RETURNING disabled, just use the default behavior
# and return nil since sequence is not known.
super
nil
else
# Force the use of RETURNING with the primary key value,
# unless it has been disabled.
returning(insert_pk).insert(*values){|r| return r.values.first}
end
end
# Handle uniqueness violations when inserting, by updating the conflicting row, using
# ON CONFLICT. With no options, uses ON CONFLICT DO NOTHING. Options:
# :conflict_where :: The index filter, when using a partial index to determine uniqueness.
# :constraint :: An explicit constraint name, has precendence over :target.
# :target :: The column name or expression to handle uniqueness violations on.
# :update :: A hash of columns and values to set. Uses ON CONFLICT DO UPDATE.
# :update_where :: A WHERE condition to use for the update.
#
# Examples:
#
# DB[:table].insert_conflict.insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT DO NOTHING
#
# DB[:table].insert_conflict(constraint: :table_a_uidx).insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT ON CONSTRAINT table_a_uidx DO NOTHING
#
# DB[:table].insert_conflict(target: :a).insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT (a) DO NOTHING
#
# DB[:table].insert_conflict(target: :a, conflict_where: {c: true}).insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT (a) WHERE (c IS TRUE) DO NOTHING
#
# DB[:table].insert_conflict(target: :a, update: {b: Sequel[:excluded][:b]}).insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT (a) DO UPDATE SET b = excluded.b
#
# DB[:table].insert_conflict(constraint: :table_a_uidx,
# update: {b: Sequel[:excluded][:b]}, update_where: {Sequel[:table][:status_id] => 1}).insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT ON CONSTRAINT table_a_uidx
# # DO UPDATE SET b = excluded.b WHERE (table.status_id = 1)
def insert_conflict(opts=OPTS)
clone(:insert_conflict => opts)
end
# Ignore uniqueness/exclusion violations when inserting, using ON CONFLICT DO NOTHING.
# Exists mostly for compatibility to MySQL's insert_ignore. Example:
#
# DB[:table].insert_ignore.insert(a: 1, b: 2)
# # INSERT INTO TABLE (a, b) VALUES (1, 2)
# # ON CONFLICT DO NOTHING
def insert_ignore
insert_conflict
end
# Insert a record, returning the record inserted, using RETURNING. Always returns nil without
# running an INSERT statement if disable_insert_returning is used. If the query runs
# but returns no values, returns false.
def insert_select(*values)
return unless supports_insert_select?
# Handle case where query does not return a row
server?(:default).with_sql_first(insert_select_sql(*values)) || false
end
# The SQL to use for an insert_select, adds a RETURNING clause to the insert
# unless the RETURNING clause is already present.
def insert_select_sql(*values)
ds = opts[:returning] ? self : returning
ds.insert_sql(*values)
end
# Support SQL::AliasedExpression as expr to setup a USING join with a table alias for the
# USING columns.
def join_table(type, table, expr=nil, options=OPTS, &block)
if expr.is_a?(SQL::AliasedExpression) && expr.expression.is_a?(Array) && !expr.expression.empty? && expr.expression.all?
options = options.merge(:join_using=>true)
end
super
end
# Locks all tables in the dataset's FROM clause (but not in JOINs) with
# the specified mode (e.g. 'EXCLUSIVE'). If a block is given, starts
# a new transaction, locks the table, and yields. If a block is not given,
# just locks the tables. Note that PostgreSQL will probably raise an error
# if you lock the table outside of an existing transaction. Returns nil.
def lock(mode, opts=OPTS)
if defined?(yield) # perform locking inside a transaction and yield to block
@db.transaction(opts){lock(mode, opts); yield}
else
sql = 'LOCK TABLE '.dup
source_list_append(sql, @opts[:from])
mode = mode.to_s.upcase.strip
unless LOCK_MODES.include?(mode)
raise Error, "Unsupported lock mode: #{mode}"
end
sql << " IN #{mode} MODE"
@db.execute(sql, opts)
end
nil
end
# Return a dataset with a WHEN MATCHED THEN DO NOTHING clause added to the
# MERGE statement. If a block is passed, treat it as a virtual row and
# use it as additional conditions for the match.
#
# merge_do_nothing_when_matched
# # WHEN MATCHED THEN DO NOTHING
#
# merge_do_nothing_when_matched{a > 30}
# # WHEN MATCHED AND (a > 30) THEN DO NOTHING
def merge_do_nothing_when_matched(&block)
_merge_when(:type=>:matched, &block)
end
# Return a dataset with a WHEN NOT MATCHED THEN DO NOTHING clause added to the
# MERGE statement. If a block is passed, treat it as a virtual row and
# use it as additional conditions for the match.
#
# merge_do_nothing_when_not_matched
# # WHEN NOT MATCHED THEN DO NOTHING
#
# merge_do_nothing_when_not_matched{a > 30}
# # WHEN NOT MATCHED AND (a > 30) THEN DO NOTHING
def merge_do_nothing_when_not_matched(&block)
_merge_when(:type=>:not_matched, &block)
end
# Support OVERRIDING USER|SYSTEM VALUE for MERGE INSERT.
def merge_insert(*values, &block)
h = {:type=>:insert, :values=>values}
if override = @opts[:override]
h[:override] = insert_override_sql(String.new)
end
_merge_when(h, &block)
end
# Use OVERRIDING USER VALUE for INSERT statements, so that identity columns
# always use the user supplied value, and an error is not raised for identity
# columns that are GENERATED ALWAYS.
def overriding_system_value
clone(:override=>:system)
end
# Use OVERRIDING USER VALUE for INSERT statements, so that identity columns
# always use the sequence value instead of the user supplied value.
def overriding_user_value
clone(:override=>:user)
end
def supports_cte?(type=:select)
if type == :select
server_version >= 80400
else
server_version >= 90100
end
end
# PostgreSQL supports using the WITH clause in subqueries if it
# supports using WITH at all (i.e. on PostgreSQL 8.4+).
def supports_cte_in_subqueries?
supports_cte?
end
# DISTINCT ON is a PostgreSQL extension
def supports_distinct_on?
true
end
# PostgreSQL 9.5+ supports GROUP CUBE
def supports_group_cube?
server_version >= 90500
end
# PostgreSQL 9.5+ supports GROUP ROLLUP
def supports_group_rollup?
server_version >= 90500
end
# PostgreSQL 9.5+ supports GROUPING SETS
def supports_grouping_sets?
server_version >= 90500
end
# True unless insert returning has been disabled for this dataset.
def supports_insert_select?
!@opts[:disable_insert_returning]
end
# PostgreSQL 9.5+ supports the ON CONFLICT clause to INSERT.
def supports_insert_conflict?
server_version >= 90500
end
# PostgreSQL 9.3+ supports lateral subqueries
def supports_lateral_subqueries?
server_version >= 90300
end
# PostgreSQL supports modifying joined datasets
def supports_modifying_joins?
true
end
# PostgreSQL 15+ supports MERGE.
def supports_merge?
server_version >= 150000
end
# PostgreSQL supports NOWAIT.
def supports_nowait?
true
end
# Returning is always supported.
def supports_returning?(type)
true
end
# PostgreSQL supports pattern matching via regular expressions
def supports_regexp?
true
end
# PostgreSQL 9.5+ supports SKIP LOCKED.
def supports_skip_locked?
server_version >= 90500
end
# PostgreSQL supports timezones in literal timestamps
def supports_timestamp_timezones?
true
end
# PostgreSQL 8.4+ supports WINDOW clause.
def supports_window_clause?
server_version >= 80400
end
# PostgreSQL 8.4+ supports window functions
def supports_window_functions?
server_version >= 80400
end
# Base support added in 8.4, offset supported added in 9.0,
# GROUPS and EXCLUDE support added in 11.0.
def supports_window_function_frame_option?(option)
case option
when :rows, :range
true
when :offset
server_version >= 90000
when :groups, :exclude
server_version >= 110000
else
false
end
end
# Truncates the dataset. Returns nil.
#
# Options:
# :cascade :: whether to use the CASCADE option, useful when truncating
# tables with foreign keys.
# :only :: truncate using ONLY, so child tables are unaffected
# :restart :: use RESTART IDENTITY to restart any related sequences
#
# :only and :restart only work correctly on PostgreSQL 8.4+.
#
# Usage:
# DB[:table].truncate
# # TRUNCATE TABLE "table"
#
# DB[:table].truncate(cascade: true, only: true, restart: true)
# # TRUNCATE TABLE ONLY "table" RESTART IDENTITY CASCADE
def truncate(opts = OPTS)
if opts.empty?
super()
else
clone(:truncate_opts=>opts).truncate
end
end
# Use WITH TIES when limiting the result set to also include additional
# rules that have the same results for the order column as the final row.
# Requires PostgreSQL 13.
def with_ties
clone(:limit_with_ties=>true)
end
protected
# If returned primary keys are requested, use RETURNING unless already set on the
# dataset. If RETURNING is already set, use existing returning values. If RETURNING
# is only set to return a single columns, return an array of just that column.
# Otherwise, return an array of hashes.
def _import(columns, values, opts=OPTS)
if @opts[:returning]
# no transaction: our multi_insert_sql_strategy should guarantee
# that there's only ever a single statement.
sql = multi_insert_sql(columns, values)[0]
returning_fetch_rows(sql).map{|v| v.length == 1 ? v.values.first : v}
elsif opts[:return] == :primary_key
returning(insert_pk)._import(columns, values, opts)
else
super
end
end
def to_prepared_statement(type, *a)
if type == :insert && !@opts.has_key?(:returning)
returning(insert_pk).send(:to_prepared_statement, :insert_pk, *a)
else
super
end
end
private
# Append the INSERT sql used in a MERGE
def _merge_insert_sql(sql, data)
sql << " THEN INSERT "
columns, values = _parse_insert_sql_args(data[:values])
_insert_columns_sql(sql, columns)
if override = data[:override]
sql << override
end
_insert_values_sql(sql, values)
end
def _merge_matched_sql(sql, data)
sql << " THEN DO NOTHING"
end
alias _merge_not_matched_sql _merge_matched_sql
# Format TRUNCATE statement with PostgreSQL specific options.
def _truncate_sql(table)
to = @opts[:truncate_opts] || OPTS
"TRUNCATE TABLE#{' ONLY' if to[:only]} #{table}#{' RESTART IDENTITY' if to[:restart]}#{' CASCADE' if to[:cascade]}"
end
# Allow truncation of multiple source tables.
def check_truncation_allowed!
raise(InvalidOperation, "Grouped datasets cannot be truncated") if opts[:group]
raise(InvalidOperation, "Joined datasets cannot be truncated") if opts[:join]
end
# Only include the primary table in the main delete clause
def delete_from_sql(sql)
sql << ' FROM '
source_list_append(sql, @opts[:from][0..0])
end
# Use USING to specify additional tables in a delete query
def delete_using_sql(sql)
join_from_sql(:USING, sql)
end
# Add ON CONFLICT clause if it should be used
def insert_conflict_sql(sql)
if opts = @opts[:insert_conflict]
sql << " ON CONFLICT"
if target = opts[:constraint]
sql << " ON CONSTRAINT "
identifier_append(sql, target)
elsif target = opts[:target]
sql << ' '
identifier_append(sql, Array(target))
if conflict_where = opts[:conflict_where]
sql << " WHERE "
literal_append(sql, conflict_where)
end
end
if values = opts[:update]
sql << " DO UPDATE SET "
update_sql_values_hash(sql, values)
if update_where = opts[:update_where]
sql << " WHERE "
literal_append(sql, update_where)
end
else
sql << " DO NOTHING"
end
end
end
# Include aliases when inserting into a single table on PostgreSQL 9.5+.
def insert_into_sql(sql)
sql << " INTO "
if (f = @opts[:from]) && f.length == 1
identifier_append(sql, server_version >= 90500 ? f.first : unaliased_identifier(f.first))
else
source_list_append(sql, f)
end
end
# Return the primary key to use for RETURNING in an INSERT statement
def insert_pk
(f = opts[:from]) && !f.empty? && (t = f.first)
case t
when Symbol, String, SQL::Identifier, SQL::QualifiedIdentifier
if pk = db.primary_key(t)
Sequel::SQL::Identifier.new(pk)
end
end
end
# Support OVERRIDING SYSTEM|USER VALUE in insert statements
def insert_override_sql(sql)
case opts[:override]
when :system
sql << " OVERRIDING SYSTEM VALUE"
when :user
sql << " OVERRIDING USER VALUE"
end
end
# For multiple table support, PostgreSQL requires at least
# two from tables, with joins allowed.
def join_from_sql(type, sql)
if(from = @opts[:from][1..-1]).empty?
raise(Error, 'Need multiple FROM tables if updating/deleting a dataset with JOINs') if @opts[:join]
else
sql << ' ' << type.to_s << ' '
source_list_append(sql, from)
select_join_sql(sql)
end
end
# Support table aliases for USING columns
def join_using_clause_using_sql_append(sql, using_columns)
if using_columns.is_a?(SQL::AliasedExpression)
super(sql, using_columns.expression)
sql << ' AS '
identifier_append(sql, using_columns.alias)
else
super
end
end
# Use a generic blob quoting method, hopefully overridden in one of the subadapter methods
def literal_blob_append(sql, v)
sql << "'" << v.gsub(/[\000-\037\047\134\177-\377]/n){|b| "\\#{("%o" % b[0..1].unpack("C")[0]).rjust(3, '0')}"} << "'"
end
# PostgreSQL uses FALSE for false values
def literal_false
'false'
end
# PostgreSQL quotes NaN and Infinity.
def literal_float(value)
if value.finite?
super
elsif value.nan?
"'NaN'"
elsif value.infinite? == 1
"'Infinity'"
else
"'-Infinity'"
end
end
# Handle Ruby integers outside PostgreSQL bigint range specially.
def literal_integer(v)
if v > 9223372036854775807 || v < -9223372036854775808
literal_integer_outside_bigint_range(v)
else
v.to_s
end
end
# Raise IntegerOutsideBigintRange when attempting to literalize Ruby integer
# outside PostgreSQL bigint range, so PostgreSQL doesn't treat
# the value as numeric.
def literal_integer_outside_bigint_range(v)
raise IntegerOutsideBigintRange, "attempt to literalize Ruby integer outside PostgreSQL bigint range: #{v}"
end
# Assume that SQL standard quoting is on, per Sequel's defaults
def literal_string_append(sql, v)
sql << "'" << v.gsub("'", "''") << "'"
end
# PostgreSQL uses true for true values
def literal_true
'true'
end
# PostgreSQL supports multiple rows in INSERT.
def multi_insert_sql_strategy
:values
end
# Dataset options that do not affect the generated SQL.
def non_sql_option?(key)
super || key == :cursor || key == :insert_conflict
end
# PostgreSQL requires parentheses around compound datasets if they use
# CTEs, and using them in other places doesn't hurt.
def compound_dataset_sql_append(sql, ds)
sql << '('
super
sql << ')'
end
# Backslash is supported by default as the escape character on PostgreSQL,
# and using ESCAPE can break LIKE ANY() usage.
def requires_like_escape?
false
end
# Support FETCH FIRST WITH TIES on PostgreSQL 13+.
def select_limit_sql(sql)
l = @opts[:limit]
o = @opts[:offset]
return unless l || o
if @opts[:limit_with_ties]
if o
sql << " OFFSET "
literal_append(sql, o)
end
if l
sql << " FETCH FIRST "
literal_append(sql, l)
sql << " ROWS WITH TIES"
end
else
if l
sql << " LIMIT "
literal_append(sql, l)
end
if o
sql << " OFFSET "
literal_append(sql, o)
end
end
end
# Support FOR SHARE locking when using the :share lock style.
# Use SKIP LOCKED if skipping locked rows.
def select_lock_sql(sql)
lock = @opts[:lock]
if lock == :share
sql << ' FOR SHARE'
else
super
end
if lock
if @opts[:skip_locked]
sql << " SKIP LOCKED"
elsif @opts[:nowait]
sql << " NOWAIT"
end
end
end
# Support VALUES clause instead of the SELECT clause to return rows.
def select_values_sql(sql)
sql << "VALUES "
expression_list_append(sql, opts[:values])
end
# Use WITH RECURSIVE instead of WITH if any of the CTEs is recursive
def select_with_sql_base
opts[:with].any?{|w| w[:recursive]} ? "WITH RECURSIVE " : super
end
# Support PostgreSQL 14+ CTE SEARCH/CYCLE clauses
def select_with_sql_cte(sql, cte)
super
select_with_sql_cte_search_cycle(sql, cte)
end
def select_with_sql_cte_search_cycle(sql, cte)
if search_opts = cte[:search]
sql << if search_opts[:type] == :breadth
" SEARCH BREADTH FIRST BY "
else
" SEARCH DEPTH FIRST BY "
end
identifier_list_append(sql, Array(search_opts[:by]))
sql << " SET "
identifier_append(sql, search_opts[:set] || :ordercol)
end
if cycle_opts = cte[:cycle]
sql << " CYCLE "
identifier_list_append(sql, Array(cycle_opts[:columns]))
sql << " SET "
identifier_append(sql, cycle_opts[:cycle_column] || :is_cycle)
if cycle_opts.has_key?(:cycle_value)
sql << " TO "
literal_append(sql, cycle_opts[:cycle_value])
sql << " DEFAULT "
literal_append(sql, cycle_opts.fetch(:noncycle_value, false))
end
sql << " USING "
identifier_append(sql, cycle_opts[:path_column] || :path)
end
end
# The version of the database server
def server_version
db.server_version(@opts[:server])
end
# PostgreSQL 9.4+ supports the FILTER clause for aggregate functions.
def supports_filtered_aggregates?
server_version >= 90400
end
# PostgreSQL supports quoted function names.
def supports_quoted_function_names?
true
end
# Concatenate the expressions with a space in between
def full_text_string_join(cols)
cols = Array(cols).map{|x| SQL::Function.new(:COALESCE, x, '')}
cols = cols.zip([' '] * cols.length).flatten
cols.pop
SQL::StringExpression.new(:'||', *cols)
end
# Use FROM to specify additional tables in an update query
def update_from_sql(sql)
join_from_sql(:FROM, sql)
end
# Only include the primary table in the main update clause
def update_table_sql(sql)
sql << ' '
source_list_append(sql, @opts[:from][0..0])
end
end
end
end
|