mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
a27198e8ca
... and a pile of other changes
12 lines
423 B
Bash
12 lines
423 B
Bash
#! /bin/bash
|
|
|
|
run_cap_test ./drive_sql "SELECT * FROM xpath('/abc[', '<abc/>')"
|
|
|
|
run_cap_test ./drive_sql "SELECT * FROM xpath('/abc', '<abc')"
|
|
|
|
run_cap_test ./drive_sql "SELECT * FROM xpath('/abc/def', '<abc/>')"
|
|
|
|
run_cap_test ./drive_sql "SELECT * FROM xpath('/abc/def[@a=\"b\"]', '<abc><def/><def a=\"b\">ghi</def></abc>')"
|
|
|
|
run_cap_test ./drive_sql "SELECT * FROM xpath('/abc/def', '<abc><def>Hello ></def></abc>')"
|