1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Fix the formatting of %c in the printf() SQL function.

FossilOrigin-Name: 3375571a5e267744c19a7c310840256cec57a242
This commit is contained in:
drh
2013-12-17 15:58:42 +00:00
parent a5c1416d64
commit fc6ee9df22
4 changed files with 16 additions and 13 deletions

View File

@ -51,6 +51,9 @@ do_execsql_test printf2-1.11 {
do_execsql_test printf2-1.12 {
SELECT printf('%.*z',5,'abcdefghijklmnop');
} {abcde}
do_execsql_test printf2-1.13 {
SELECT printf('%c','abcdefghijklmnop');
} {a}
finish_test