Files
wx-cli/crates/wx-db/tests/fixtures/04-empty-title-channel.sql
pandorafuture 96ccbbdc3d feat: initial release of wx-cli v0.7.2
WeChat macOS database decryption and query tool, supporting key extraction,
message querying, full-text search, conversation export, real-time monitoring,
media handling, and HTTP server mode with REST API and SSE.
2026-06-04 22:50:00 +08:00

15 lines
483 B
SQL

-- Fixture 04: Empty title with channel video
-- Tests title→des fallback for channel video messages.
-- local_type = (51 << 32) | 49 = 219043332145
INSERT INTO fixture_messages (sort_seq, server_id, local_type, sender, talker, create_time, message_content)
VALUES (
400,
900004,
219043332145,
'wxid_test_alice',
'wxid_test_bob',
1700000400,
'<msg><appmsg><title></title><des>This is a channel video description</des><type>51</type></appmsg></msg>'
);