Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e76f92d

Browse filesBrowse files
committed
version 1.1
1 parent 351ac9e commit e76f92d
Copy full SHA for e76f92d

File tree

5 files changed

+14
-3
lines changed
Filter options

5 files changed

+14
-3
lines changed

‎META.json

Copy file name to clipboardExpand all lines: META.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
"index",
5151
"search"
5252
]
53-
}
53+
}

‎Makefile

Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OBJS = jsonb_gin_ops.o jsquery_constr.o jsquery_extract.o \
55
jsquery_gram.o jsquery_io.o jsquery_op.o jsquery_support.o
66

77
EXTENSION = jsquery
8-
DATA = jsquery--1.0.sql
8+
DATA = jsquery--1.1.sql jsquery--1.0--1.1.sql
99
INCLUDES = jsquery.h
1010

1111
REGRESS = jsquery

‎jsquery--1.0--1.1.sql

Copy file name to clipboard
+11Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CREATE FUNCTION json_jsquery_filter(jsonb, jsquery)
2+
RETURNS jsonb
3+
AS 'MODULE_PATHNAME'
4+
LANGUAGE C STRICT IMMUTABLE;
5+
6+
CREATE OPERATOR ~~ (
7+
LEFTARG = jsonb,
8+
RIGHTARG = jsquery,
9+
PROCEDURE = json_jsquery_filter
10+
);
11+
File renamed without changes.

‎jsquery.control

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jsquery extension
22
comment = 'data type for jsonb inspection'
3-
default_version = '1.0'
3+
default_version = '1.1'
44
module_pathname = '$libdir/jsquery'
55
relocatable = true
66

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.