mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fix bug with ?_nl=on and binary data, closes #914
This commit is contained in:
parent
3a4c8ed36a
commit
8e7e6458a6
4 changed files with 40 additions and 5 deletions
|
|
@ -663,7 +663,8 @@ CREATE VIEW searchable_view_configured_by_metadata AS
|
|||
)
|
||||
)
|
||||
TABLE_PARAMETERIZED_SQL = [
|
||||
("insert into binary_data (data) values (?);", [b"this is binary data"])
|
||||
("insert into binary_data (data) values (?);", [b"\x15\x1c\x02\xc7\xad\x05\xfe"]),
|
||||
("insert into binary_data (data) values (?);", [b"\x15\x1c\x03\xc7\xad\x05\xfe"]),
|
||||
]
|
||||
|
||||
EXTRA_DATABASE_SQL = """
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue