Skip to content

Commit 03a52fc

Browse files
authored
Merge pull request #4 from stackql/feature/new-functions
updated package info
2 parents 1dcf91e + 155eac8 commit 03a52fc

File tree

4 files changed

+29
-17
lines changed

4 files changed

+29
-17
lines changed

sqlpkg/aws_policy_equal.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66
"repository": "https://github.com/stackql/sqlite-ext-functions",
77
"authors": ["Jeffrey Aven"],
88
"license": "MIT",
9-
"description": "A SQLite extension for comparing AWS IAM policy documents semantically according to AWS policy evaluation rules.",
10-
"keywords": ["AWS", "IAM policy", "policy comparison", "aws_policy_equal"],
9+
"description": "Comparing AWS IAM policy documents semantically for equivalence within SQL queries.",
10+
"keywords": ["aws", "iam policy", "comparison", "equality"],
11+
"symbols": ["aws_policy_equal"],
1112
"assets": {
1213
"files": {
1314
"darwin-amd64": "stackql-sqlite-ext-functions-macos-universal.zip",
1415
"darwin-arm64": "stackql-sqlite-ext-functions-macos-universal.zip",
1516
"linux-amd64": "stackql-sqlite-ext-functions-linux-amd64.zip",
1617
"windows-amd64": "stackql-sqlite-ext-functions-windows-amd64.zip"
17-
}
18+
},
19+
"pattern": "aws_policy_equal*"
1820
}
1921
}

sqlpkg/json_equal.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66
"repository": "https://github.com/stackql/sqlite-ext-functions",
77
"authors": ["Jeffrey Aven"],
88
"license": "MIT",
9-
"description": "A SQLite extension for comparing JSON strings (objects or arrays) for equivalence within SQL queries.",
10-
"keywords": ["JSON", "JSON comparison", "JSON equality", "json_equal"],
9+
"description": "Comparing JSON strings (objects or arrays) for equivalence within SQL queries.",
10+
"keywords": ["json", "comparison", "equality"],
11+
"symbols": ["json_equal"],
1112
"assets": {
1213
"files": {
1314
"darwin-amd64": "stackql-sqlite-ext-functions-macos-universal.zip",
1415
"darwin-arm64": "stackql-sqlite-ext-functions-macos-universal.zip",
1516
"linux-amd64": "stackql-sqlite-ext-functions-linux-amd64.zip",
1617
"windows-amd64": "stackql-sqlite-ext-functions-windows-amd64.zip"
17-
}
18+
},
19+
"pattern": "json_equal*"
1820
}
19-
}
21+
}

sqlpkg/regexp.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
"owner": "stackql",
33
"name": "regexp",
44
"version": "v1.0.4",
5-
"homepage": "https://github.com/stackql/sqlite-ext-functions/blob/main/docs/regexp.md",
5+
"homepage": "https://github.com/stackql/sqlite-ext-functions/blob/main/docs/regexp_fns.md",
66
"repository": "https://github.com/stackql/sqlite-ext-functions",
77
"authors": ["Jeffrey Aven"],
88
"license": "MIT",
9-
"description": "A SQLite extension for working with regular expressions using the tiny-regex-c library. Provides functions for pattern matching and manipulation of strings within SQL queries.",
10-
"keywords": ["regexp", "regexp_like", "regexp_replace", "regexp_substr", "regular expressions", "pattern matching", "string manipulation", "tiny-regex-c"],
9+
"description": "Working with regular expressions using the tiny-regex-c library.",
10+
"keywords": ["pattern matching", "string manipulation", "tiny-regex-c"],
11+
"symbols": ["regexp_like", "regexp_replace", "regexp_substr", "regexp"],
1112
"assets": {
1213
"files": {
1314
"darwin-amd64": "stackql-sqlite-ext-functions-macos-universal.zip",
1415
"darwin-arm64": "stackql-sqlite-ext-functions-macos-universal.zip",
1516
"linux-amd64": "stackql-sqlite-ext-functions-linux-amd64.zip",
1617
"windows-amd64": "stackql-sqlite-ext-functions-windows-amd64.zip"
17-
}
18+
},
19+
"pattern": "regexp*"
1820
}
19-
}
20-
21+
}

sqlpkg/split_part.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@
66
"repository": "https://github.com/stackql/sqlite-ext-functions",
77
"authors": ["Jeffrey Aven"],
88
"license": "MIT",
9-
"description": "A SQLite extension for splitting strings into parts using a specified separator, PostgreSQL compatible, supporting negative indexes.",
10-
"keywords": ["split_part", "string manipulation", "string splitting", "PostgreSQL compatible", "negative indexes"],
9+
"description": "Splitting strings into parts using a specified separator.",
10+
"keywords": [
11+
"negative indexes",
12+
"postgresql compatible",
13+
"string manipulation",
14+
"string splitting"
15+
],
16+
"symbols": ["split_part"],
1117
"assets": {
1218
"files": {
1319
"darwin-amd64": "stackql-sqlite-ext-functions-macos-universal.zip",
1420
"darwin-arm64": "stackql-sqlite-ext-functions-macos-universal.zip",
1521
"linux-amd64": "stackql-sqlite-ext-functions-linux-amd64.zip",
1622
"windows-amd64": "stackql-sqlite-ext-functions-windows-amd64.zip"
17-
}
23+
},
24+
"pattern": "split_part*"
1825
}
19-
}
26+
}

0 commit comments

Comments
 (0)