forked from omnigres/omnigres
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem:
xpath
symbol conflict with postgres
binary
Solution: rename the internal function name
- Loading branch information
Showing
5 changed files
with
36 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres | ||
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.1.1] - 2024-06-28 | ||
|
||
### Fixed | ||
|
||
* Fixed `xpath` symbol conflict [#566]: [https://github.com/omnigres/omnigres/pull/566] | ||
|
||
## [0.1.0] - 2024-03-05 | ||
|
||
Initial release following a few months of iterative development. | ||
|
||
[Unreleased]: https://github.com/omnigres/omnigres/commits/next/omni_httpd | ||
|
||
[0.1.0]: [https://github.com/omnigres/omnigres/pull/511] | ||
|
||
[0.1.1]: [https://github.com/omnigres/omnigres/pull/566] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
create function xpath(document text, query text) | ||
returns table | ||
( | ||
path text, | ||
value text | ||
) | ||
language c | ||
as | ||
'MODULE_PATHNAME'; | ||
/*{% include "../src/xpath.sql" %}*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
create function xpath(document text, query text) | ||
returns table | ||
( | ||
path text, | ||
value text | ||
) | ||
language c | ||
as | ||
'MODULE_PATHNAME', | ||
'xpath_fn'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ omni_var=0.1.0 | |
omni_vfs_types_v1=0.1.0 | ||
omni_vfs=0.1.1 | ||
omni_web=0.1.0 | ||
omni_xml=0.1.0 | ||
omni_xml=0.1.1 |