{"id":6937,"date":"2025-09-25T18:17:10","date_gmt":"2025-09-25T18:17:10","guid":{"rendered":"https:\/\/pokecon.jp\/job\/?p=6937"},"modified":"2025-09-25T18:17:10","modified_gmt":"2025-09-25T18:17:10","slug":"postgresql-postgresql-18-released","status":"publish","type":"post","link":"https:\/\/pokecon.jp\/job\/6937\/","title":{"rendered":"PostgreSQL: PostgreSQL 18 Released!"},"content":{"rendered":"\n<\/p>\n<div id=\"pgContentWrap\">\n<p>Posted on <strong>2025-09-25<\/strong> by PostgreSQL Global Development Group<\/p>\n<p>\n<span class=\"badge badge-pill badge-secondary\"><i class=\"fa fa-tag\"\/> PostgreSQL Project<\/span><\/p>\n<p>The <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\">PostgreSQL Global Development Group<\/a><br \/>\ntoday announced the release of <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/release-18.html\">PostgreSQL 18<\/a>,<br \/>\nthe latest version of the world&#8217;s most advanced open source database. Translations of this press release are available in the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/about\/press\/\">PostgreSQL 18 press kit<\/a>.<\/p>\n<p>PostgreSQL 18 improves performance for workloads of all sizes through a new I\/O<br \/>\nsubsystem that has demonstrated up to 3\u00d7 performance improvements when reading<br \/>\nfrom storage, and also increases the number of queries that can use indexes.<br \/>\nThis release makes major-version upgrades less disruptive, accelerating upgrade<br \/>\ntimes and reducing the time required to reach expected performance after an<br \/>\nupgrade completes. Developers also benefit from PostgreSQL 18 features,<br \/>\nincluding virtual generated columns that compute values at query time, and the<br \/>\ndatabase-friendly <code>uuidv7()<\/code> function that provides better indexing and read<br \/>\nperformance for UUIDs. PostgreSQL 18 makes it easier to integrate with single-sign<br \/>\non (SSO) systems with support for OAuth 2.0 authentication.<\/p>\n<p>&#8220;The efforts of the global open source community shape every PostgreSQL release<br \/>\nand help deliver features that meet users where their data resides,&#8221; said<br \/>\nJonathan Katz, a member of the PostgreSQL core team. &#8220;PostgreSQL 18 builds on the<br \/>\nproject&#8217;s long, rich history of delivering a reliable and robust data management<br \/>\nexperience, while continuing to expand the workloads it can support.&#8221;<\/p>\n<p>PostgreSQL, an innovative data management system known for its reliability,<br \/>\nrobustness, and extensibility, benefits from nearly 30 years of open source<br \/>\ndevelopment from a global developer community and has become the preferred open<br \/>\nsource relational database for organizations of all sizes.<\/p>\n<h3>Introducing asynchronous I\/O<\/h3>\n<p>PostgreSQL previously relied on operating system readahead mechanisms to<br \/>\naccelerate data retrieval. However, because operating systems lack insight into<br \/>\ndatabase-specific access patterns, they cannot always anticipate what data will<br \/>\nbe required, leading to suboptimal performance in many workloads.<\/p>\n<p>PostgreSQL 18 introduces a new asynchronous I\/O (AIO) subsystem designed to<br \/>\naddress this limitation. AIO lets PostgreSQL issue multiple I\/O requests<br \/>\nconcurrently instead of waiting for each to finish in sequence. This expands<br \/>\nexisting readahead and improves overall throughput. AIO operations supported in<br \/>\nPostgreSQL 18 include sequential scans, bitmap heap scans, and vacuum.<br \/>\nBenchmarking has demonstrated performance gains of up to 3x in certain scenarios.<\/p>\n<p>The new <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/runtime-config-resource.html#GUC-IO-METHOD\"><code>io_method<\/code><\/a><br \/>\nsetting lets you toggle between the AIO methods, including <code>worker<\/code> and <code>io_uring<\/code>,<br \/>\nor you can choose to maintain the current PostgreSQL behavior with the <code>sync<\/code><br \/>\nsetting. There are now more parameters to consider tuning with AIO, which you<br \/>\ncan <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/runtime-config-resource.html#RUNTIME-CONFIG-RESOURCE-IO\">learn more about in the documentation<\/a>.<\/p>\n<h3>Faster upgrades, better post-upgrade performance<\/h3>\n<p>A key PostgreSQL feature is the generation and storage of<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/planner-stats.html\">statistics<\/a> that help<br \/>\nPostgreSQL select the most efficient query plan. Before PostgreSQL 18, these<br \/>\nstatistics didn&#8217;t carry over on a <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgupgrade.html\">major version upgrade<\/a>,<br \/>\nwhich could cause significant query performance degradations on busy systems<br \/>\nuntil the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/sql-analyze.html\"><code>ANALYZE<\/code><\/a><br \/>\nfinished running. PostgreSQL 18 introduces the ability to keep planner<br \/>\nstatistics through a major version upgrade, which helps an upgraded cluster<br \/>\nreach expected performance more quickly after the upgrade.<\/p>\n<p>Additionally, <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgupgrade.html\"><code>pg_upgrade<\/code><\/a>,<br \/>\na utility that performs major version upgrades, includes several enhancements in<br \/>\nPostgreSQL 18, such as faster upgrades when a database contains many objects<br \/>\nlike tables and sequences. This release also lets <code>pg_upgrade<\/code> process its<br \/>\nchecks in parallel based on the settings of the <code>--jobs<\/code> flag, and adds the<br \/>\n<code>--swap<\/code> flag that swaps upgrade directories instead of copying, cloning, or<br \/>\nlinking files.<\/p>\n<h3>Query and general performance enhancements<\/h3>\n<p>PostgreSQL 18 further accelerates query performance with features that<br \/>\nautomatically make your workloads faster. This release introduces &#8220;skip scan&#8221;<br \/>\nlookups on <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/indexes-multicolumn.html\">multicolumn B-tree indexes<\/a><br \/>\nthat improve execution time for queries that omit an <code>=<\/code> condition on one or<br \/>\nmore prefix index columns. It can also optimize queries that use <code>OR<\/code> conditions<br \/>\nin a <code>WHERE<\/code> to use an index, leading to significantly faster execution. There<br \/>\nare also numerous improvements for how PostgreSQL plans and executes table joins,<br \/>\nfrom boosting the performance of hash joins to allowing merge joins to use<br \/>\nincremental sorts. PostgreSQL 18 also supports parallel builds for<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/gin.html\">GIN indexes<\/a>, joining B-tree and<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/current\/brin.html\">BRIN indexes<\/a> in supporting<br \/>\nthis capability.<\/p>\n<p>This release also builds on PostgreSQL support for hardware acceleration,<br \/>\nincluding support for ARM NEON and SVE CPU intrinsics for the <code>popcount<\/code><br \/>\nfunction, which is used by the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/functions-bitstring.html\"><code>bit_count<\/code><\/a><br \/>\nand other internal capabilities.<\/p>\n<h3>Enhancing the developer experience<\/h3>\n<p>PostgreSQL 18 introduces <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/sql-createtable.html#SQL-CREATETABLE-PARMS-GENERATED-STORED\">virtual generated columns<\/a><br \/>\nthat compute values at query time instead of storing them. This is now the<br \/>\ndefault option for generated columns. Additionally, stored generated columns can<br \/>\nnow be logically replicated.<\/p>\n<p>This release adds the capability to access both the previous (<code>OLD<\/code>) and current<br \/>\n(<code>NEW<\/code>) values in the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/dml-returning.html\"><code>RETURNING<\/code> clause<\/a><br \/>\nfor <code>INSERT<\/code>, <code>UPDATE<\/code>, <code>DELETE<\/code> and <code>MERGE<\/code> commands. PostgreSQL 18 also adds<br \/>\nUUIDv7 generation through the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/functions-uuid.html#FUNC_UUID_GEN_TABLE\"><code>uuidv7()<\/code><\/a><br \/>\nfunction, letting you generate random UUIDs that are timestamp-ordered to<br \/>\nsupport better caching strategies. PostgreSQL 18 includes<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/functions-uuid.html#FUNC_UUID_GEN_TABLE\"><code>uuidv4()<\/code><\/a><br \/>\nas an alias for <code>gen_random_uuid()<\/code>.<\/p>\n<p>PostgreSQL 18 adds <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/sql-createtable.html#SQL-CREATETABLE-PARMS-UNIQUE\">temporal constraints<\/a><br \/>\n&#8212; constraints over ranges &#8212; for both <code>PRIMARY KEY<\/code> and <code>UNIQUE<\/code> constraints<br \/>\nusing the <code>WITHOUT OVERLAPS<\/code> clause, and on <code>FOREIGN KEY<\/code> constraints using the<br \/>\n<code>PERIOD<\/code> clause.<\/p>\n<p>Finally, PostgreSQL 18 makes it easier to create the schema definition of a<br \/>\nforeign table using the definition of a local table with the<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/sql-createforeigntable.html\"><code>CREATE FOREIGN TABLE ... LIKE<\/code><\/a><br \/>\ncommand.<\/p>\n<h3>Improved text processing<\/h3>\n<p>PostgreSQL 18 makes text processing easier and faster with several new<br \/>\nenhancements. This release adds the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/collation.html#COLLATION-MANAGING-STANDARD\"><code>PG_UNICODE_FAST<\/code><\/a><br \/>\ncollation, which provides full Unicode semantics for case transformations while<br \/>\nhelping to accelerate many comparisons. This includes the <code>upper<\/code> and <code>lower<\/code><br \/>\nstring comparison functions and the new <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/functions-string.html#FUNCTIONS-STRING-OTHER\"><code>casefold<\/code><\/a><br \/>\nfunction for case-insensitive comparisons. Additionally, PostgreSQL 18 now<br \/>\nsupports making <code>LIKE<\/code> comparisons over text that uses a<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/collation.html#COLLATION-NONDETERMINISTIC\">nondeterministic collation<\/a>,<br \/>\nsimplifying how you can perform more complex pattern matching. This release also<br \/>\nchanges <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/textsearch.html\">full text search<\/a><br \/>\nto use the default collation provider of a cluster instead of always using libc,<br \/>\nwhich may require you to reindex all<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/textsearch-tables.html#TEXTSEARCH-TABLES-INDEX\">full text search<\/a><br \/>\nand <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgtrgm.html#PGTRGM-INDEX\"><code>pg_trgm<\/code><\/a><br \/>\nindexes after running <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgupgrade.html\"><code>pg_upgrade<\/code><\/a>.<\/p>\n<h3>Authentication and security features<\/h3>\n<p>PostgreSQL 18 introduces <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/auth-oauth.html\"><code>oauth<\/code> authentication<\/a>,<br \/>\nwhich lets users authenticate using OAuth 2.0 mechanisms supported through<br \/>\nPostgreSQL extensions. Additionally, PostgreSQL 18 includes validation for<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgcrypto.html#PGCRYPTO-OPENSSL-SUPPORT-FUNCS\">FIPS mode<\/a>,<br \/>\nand adds the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/runtime-config-connection.html#GUC-SSL-TLS13-CIPHERS\"><code>ssl_tls13_ciphers<\/code><\/a><br \/>\nparameter for configuring server-side TLS v1.3 cipher suites.<\/p>\n<p>This release deprecates <code>md5<\/code> password authentication, which will be removed in<br \/>\na future release. If you require PostgreSQL password-based authentication, use<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/auth-password.html\">SCRAM authentication<\/a>.<br \/>\nPostgreSQL 18 also supports SCRAM passthrough authentication with both<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/postgres-fdw.html\"><code>postgres_fdw<\/code><\/a> and<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/dblink.html\"><code>dblink<\/code><\/a> for authenticating to<br \/>\nremote PostgreSQL instances. Additionally, <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgcrypto.html\"><code>pgcrypto<\/code><\/a><br \/>\nnow supports <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgcrypto.html#PGCRYPTO-CRYPT-ALGORITHMS\">SHA-2 encryption for password hashing<\/a>.<\/p>\n<h3>Replication<\/h3>\n<p>PostgreSQL 18 supports reporting logical replication write conflicts in logs and<br \/>\nin the <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/monitoring-stats.html#MONITORING-PG-STAT-SUBSCRIPTION-STATS\"><code>pg_stat_subscription_stats<\/code><\/a> view. Additionally,<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/sql-createsubscription.html\"><code>CREATE SUBSCRIPTION<\/code><\/a><br \/>\nnow defaults to using parallel streaming for applying transactions, which can<br \/>\nhelp improve performance. The<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/app-pgcreatesubscriber.html\"><code>pg_createsubscriber<\/code><\/a><br \/>\nutility now has an <code>--all<\/code> flag so you can create logical replicas for all<br \/>\ndatabases in an instance with a single command. PostgreSQL 18 also lets you<br \/>\nautomatically <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/runtime-config-replication.html#GUC-IDLE-REPLICATION-SLOT-TIMEOUT\">drop idle replication slots<\/a> to help prevent storing too many<br \/>\nwrite-ahead log files on a publisher.<\/p>\n<h3>Maintenance and observability<\/h3>\n<p>PostgreSQL 18 improves its <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/routine-vacuuming.html\">vacuum<\/a><br \/>\nstrategy by proactively freezing more pages during regular vacuums, reducing<br \/>\noverhead and helping in situations that require aggressive vacuums. <\/p>\n<p>PostgreSQL 18 adds more details to <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/using-explain.html\"><code>EXPLAIN<\/code><\/a>,<br \/>\nwhich provides information about query plan execution, and as of this release<br \/>\nnow automatically shows how many buffers (the fundamental unit of data storage)<br \/>\nare accessed when executing <code>EXPLAIN ANALYZE<\/code>. Additionally, <code>EXPLAIN ANALYZE<\/code><br \/>\nnow shows how many index lookups occur during an index scan, and <code>EXPLAIN ANALYZE VERBOSE<\/code><br \/>\nincludes CPU, WAL, and average read statistics. PostgreSQL 18 includes more info<br \/>\nin <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/monitoring-stats.html#MONITORING-PG-STAT-ALL-TABLES-VIEW\"><code>pg_stat_all_tables<\/code><\/a><br \/>\non time spent on vacuum and related operations, as well as per-connection<br \/>\nstatistics on I\/O and WAL utilization.<\/p>\n<h3>Other notable changes<\/h3>\n<p>Databases initialized with PostgreSQL 18 <a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/app-initdb.html\"><code>initdb<\/code><\/a><br \/>\nnow have page checksums enabled by default. This can affect upgrades from<br \/>\nnon-checksum enabled clusters, which would require you to create a new<br \/>\nPostgreSQL 18 cluster with the <code>--no-data-checksums<\/code> option when using<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/pgupgrade.html\"><code>pg_upgrade<\/code><\/a>.<\/p>\n<p>PostgreSQL 18 also introduces a new version (3.2) of the PostgreSQL wire<br \/>\nprotocol, the first new protocol version since PostgreSQL 7.4 (2003).<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/libpq-connect.html\"><code>libpq<\/code><\/a> still uses<br \/>\nversion 3.0 by default while clients (e.g., drivers, poolers, proxies) add<br \/>\nsupport for the new protocol version.<\/p>\n<h3>Additional Features<\/h3>\n<p>Many other new features and improvements have been added to PostgreSQL 18 that<br \/>\nmay also be helpful for your use cases. Please see the<br \/>\n<a target=\"_blank\" href=\"https:\/\/www.postgresql.org\/docs\/18\/release-18.html\">release notes<\/a> for a<br \/>\ncomplete list of new and changed features.<\/p>\n<h3>About PostgreSQL<\/h3>\n<p><a target=\"_blank\" href=\"https:\/\/www.postgresql.org\">PostgreSQL<\/a> is the world&#8217;s most advanced open<br \/>\nsource database, with a global community of thousands of users, contributors,<br \/>\ncompanies and organizations. Since its beginnings at the University of<br \/>\nCalifornia, Berkeley over 40 years ago, PostgreSQL has continued with an<br \/>\nunmatched pace of development. PostgreSQL&#8217;s mature feature set not only matches<br \/>\ntop proprietary database systems, but exceeds them in advanced database<br \/>\nfeatures, extensibility, security, and stability.<\/p>\n<h3>Links<\/h3>\n<\/p><\/div>\n\n<br \/><a href=\"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/\">\u5143\u306e\u8a18\u4e8b\u3092\u78ba\u8a8d\u3059\u308b <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"Posted on 2025-09-25 by PostgreSQL Global Development Group PostgreSQL Project The PostgreSQL Global Developme [&hellip;]","protected":false},"author":1,"featured_media":6938,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-6937","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hatena-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"og:description\" content=\"Posted on 2025-09-25 by PostgreSQL Global Development Group PostgreSQL Project The PostgreSQL Global Developme [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/\" \/>\n<meta property=\"og:site_name\" content=\"\u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-25T18:17:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png\" \/>\n\t<meta property=\"og:image:width\" content=\"540\" \/>\n\t<meta property=\"og:image:height\" content=\"557\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"info@pokecon.jp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"info@pokecon.jp\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"7\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6937\\\/\"},\"author\":{\"name\":\"info@pokecon.jp\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"headline\":\"PostgreSQL: PostgreSQL 18 Released!\",\"datePublished\":\"2025-09-25T18:17:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6937\\\/\"},\"wordCount\":1350,\"image\":{\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/elephant.png\",\"articleSection\":[\"\u306f\u3066\u306a\u30d6\u30ed\u30b0\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/6937\\\/\",\"url\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/\",\"name\":\"PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/elephant.png\",\"datePublished\":\"2025-09-25T18:17:10+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/elephant.png\",\"contentUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/elephant.png\",\"width\":540,\"height\":557},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.postgresql.org\\\/about\\\/news\\\/postgresql-18-released-3142\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PostgreSQL: PostgreSQL 18 Released!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\",\"name\":\"\u30dd\u30b1\u30b3\u30f3\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\",\"name\":\"info@pokecon.jp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"caption\":\"info@pokecon.jp\"},\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/author\\\/infopokecon-jp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/","og_locale":"ja_JP","og_type":"article","og_title":"PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3","og_description":"Posted on 2025-09-25 by PostgreSQL Global Development Group PostgreSQL Project The PostgreSQL Global Developme [&hellip;]","og_url":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/","og_site_name":"\u30dd\u30b1\u30b3\u30f3","article_published_time":"2025-09-25T18:17:10+00:00","og_image":[{"width":540,"height":557,"url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png","type":"image\/png"}],"author":"info@pokecon.jp","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"info@pokecon.jp","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"7\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#article","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/6937\/"},"author":{"name":"info@pokecon.jp","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"headline":"PostgreSQL: PostgreSQL 18 Released!","datePublished":"2025-09-25T18:17:10+00:00","mainEntityOfPage":{"@id":"https:\/\/pokecon.jp\/job\/6937\/"},"wordCount":1350,"image":{"@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png","articleSection":["\u306f\u3066\u306a\u30d6\u30ed\u30b0"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/pokecon.jp\/job\/6937\/","url":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/","name":"PostgreSQL: PostgreSQL 18 Released! - \u30dd\u30b1\u30b3\u30f3","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#primaryimage"},"image":{"@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png","datePublished":"2025-09-25T18:17:10+00:00","author":{"@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"breadcrumb":{"@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#primaryimage","url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png","contentUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/09\/elephant.png","width":540,"height":557},{"@type":"BreadcrumbList","@id":"https:\/\/www.postgresql.org\/about\/news\/postgresql-18-released-3142\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/pokecon.jp\/job\/"},{"@type":"ListItem","position":2,"name":"PostgreSQL: PostgreSQL 18 Released!"}]},{"@type":"WebSite","@id":"https:\/\/pokecon.jp\/job\/#website","url":"https:\/\/pokecon.jp\/job\/","name":"\u30dd\u30b1\u30b3\u30f3","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pokecon.jp\/job\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997","name":"info@pokecon.jp","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","caption":"info@pokecon.jp"},"url":"https:\/\/pokecon.jp\/job\/author\/infopokecon-jp\/"}]}},"_links":{"self":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/comments?post=6937"}],"version-history":[{"count":1,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6937\/revisions"}],"predecessor-version":[{"id":6939,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/6937\/revisions\/6939"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media\/6938"}],"wp:attachment":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media?parent=6937"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/categories?post=6937"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/tags?post=6937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}