Title: [BUG] JSQLParser 5.4-SNAPSHOT : PostgreSQL : XMLTable function not supported · Issue #2326 · JSQLParser/JSqlParser · GitHub
Open Graph Title: [BUG] JSQLParser 5.4-SNAPSHOT : PostgreSQL : XMLTable function not supported · Issue #2326 · JSQLParser/JSqlParser
X Title: [BUG] JSQLParser 5.4-SNAPSHOT : PostgreSQL : XMLTable function not supported · Issue #2326 · JSQLParser/JSqlParser
Description: PostgreSQL official documentation: https://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-XML-PROCESSING-XMLTABLE Error trying to parse: Steps to reproduce: CREATE TABLE xmldata ( id SERIAL PRIMARY KEY, -- optional, just fo...
Open Graph Description: PostgreSQL official documentation: https://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-XML-PROCESSING-XMLTABLE Error trying to parse: Steps to reproduce: CREATE TABLE xmldata ( id ...
X Description: PostgreSQL official documentation: https://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-XML-PROCESSING-XMLTABLE Error trying to parse: Steps to reproduce: CREATE TABLE xmldata ( id ...
Opengraph URL: https://github.com/JSQLParser/JSqlParser/issues/2326
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[BUG] JSQLParser 5.4-SNAPSHOT : PostgreSQL : XMLTable function not supported","articleBody":"**PostgreSQL official documentation:**\n\nhttps://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-XML-PROCESSING-XMLTABLE\n\n**Error trying to parse:**\n\n\u003cimg width=\"452\" height=\"89\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/0767f5d5-4cf7-4879-81cf-d424a0455d8b\" /\u003e\n\n\n**Steps to reproduce:**\n\n```-- Table to store XML data\nCREATE TABLE xmldata (\n id SERIAL PRIMARY KEY, -- optional, just for uniqueness\n data XML NOT NULL -- the XML column\n);\n\n-- Optional: Insert some dummy XML for testing\nINSERT INTO xmldata (data) VALUES\n(\n '\u003cROWS\u003e\n \u003cROW id=\"1\"\u003e\n \u003cCOUNTRY_NAME\u003eCanada\u003c/COUNTRY_NAME\u003e\n \u003cCOUNTRY_ID\u003eCA\u003c/COUNTRY_ID\u003e\n \u003cSIZE unit=\"sq_km\"\u003e9984670\u003c/SIZE\u003e\n \u003cPREMIER_NAME\u003eJustin Trudeau\u003c/PREMIER_NAME\u003e\n \u003c/ROW\u003e\n \u003cROW id=\"2\"\u003e\n \u003cCOUNTRY_NAME\u003eFrance\u003c/COUNTRY_NAME\u003e\n \u003cCOUNTRY_ID\u003eFR\u003c/COUNTRY_ID\u003e\n \u003cSIZE unit=\"sq_mi\"\u003e248573\u003c/SIZE\u003e\n \u003c/ROW\u003e\n \u003c/ROWS\u003e'\n);\n\nSELECT xmltable.*\n FROM xmldata,\n XMLTABLE('//ROWS/ROW'\n PASSING data\n COLUMNS id int PATH '@id',\n ordinality FOR ORDINALITY,\n \"COUNTRY_NAME\" text,\n country_id text PATH 'COUNTRY_ID',\n size_sq_km float PATH 'SIZE[@unit = \"sq_km\"]',\n size_other text PATH\n 'concat(SIZE[@unit!=\"sq_km\"], \" \", SIZE[@unit!=\"sq_km\"]/@unit)',\n premier_name text PATH 'PREMIER_NAME' DEFAULT 'not specified');```","author":{"url":"https://github.com/tomershay","@type":"Person","name":"tomershay"},"datePublished":"2025-10-12T17:54:36.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/2326/JSqlParser/issues/2326"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:de4701b3-7927-7cb6-b2b3-8333acd36804 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | A4B8:1721AF:13737EF:1A6B7C5:6964ACEA |
| html-safe-nonce | 129076217a34ad8180402ca0d11a4de71e23ae0fdf1a1bf9d850467cbfa49c24 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNEI4OjE3MjFBRjoxMzczN0VGOjFBNkI3QzU6Njk2NEFDRUEiLCJ2aXNpdG9yX2lkIjoiODc4MTI0NDI5NTUzNjc0OTgwMiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | d1d88287e50edc3d403b500f513bf84502c7b6e28562fa2bfa83c21f522eafcd |
| hovercard-subject-tag | issue:3507624934 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/JSQLParser/JSqlParser/2326/issue_layout |
| twitter:image | https://opengraph.githubassets.com/9525bb3c02dafe5c68bdef5e4e0cda2e98b15700b0e40b0e1825ddaf28669c32/JSQLParser/JSqlParser/issues/2326 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/9525bb3c02dafe5c68bdef5e4e0cda2e98b15700b0e40b0e1825ddaf28669c32/JSQLParser/JSqlParser/issues/2326 |
| og:image:alt | PostgreSQL official documentation: https://www.postgresql.org/docs/current/functions-xml.html#FUNCTIONS-XML-PROCESSING-XMLTABLE Error trying to parse: Steps to reproduce: CREATE TABLE xmldata ( id ... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | tomershay |
| hostname | github.com |
| expected-hostname | github.com |
| None | 15579c46431b7fd25941c3b09010f74fd1890c7a35226839bbbf40ce70fb3057 |
| turbo-cache-control | no-preview |
| go-import | github.com/JSQLParser/JSqlParser git https://github.com/JSQLParser/JSqlParser.git |
| octolytics-dimension-user_id | 4643847 |
| octolytics-dimension-user_login | JSQLParser |
| octolytics-dimension-repository_id | 1944709 |
| octolytics-dimension-repository_nwo | JSQLParser/JSqlParser |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 1944709 |
| octolytics-dimension-repository_network_root_nwo | JSQLParser/JSqlParser |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 499abb347cb197601d399c346cfeb4b3fa135d5c |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width