should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
# name: benchmark/micro/string/inet_unescape_codepoints.benchmark
# description: inet's extension unescape function benchmark with Unicode codepoints
# group: [string]
name html_unescape benchmark with hexadecimal values
group string
require inet
load
CREATE TABLE html_hex_tbl AS SELECT format('&#x{:x}', i) html_text FROM range(1000000) t(i);
run
SELECT html_unescape(html_text) FROM html_hex_tbl;