pt-log-player split issue

I am new to using this tool and I’m having problems splitting my log file based on Schema.
I run the following command against my log file but it never generates any files:

pt-log-player --split Schema --session-files 32 --filter ‘$event->{arg} =~ m/^select/i’ --base-dir benchmark/session-files slow-log

If I do modify the command to split randomly:

pt-log-player --split-random --session-files 32 --filter ‘$event->{arg} =~ m/^select/i’ --base-dir benchmark/session-files slow-log

a directory is created under benchmark/session-files with 32 files named session-N.txt which contain select statements.

What am I missing when trying to split based on Schema?

Thanks
Graham

Does your log file have a Schema attribute in the events?

Thanks for the response Baron.

I guess I was mis-understanding how the tool was determining the schema. I was making the assumption this string

User@Host: schema_name[user] @ [host]

was used to determine the schema.

I now see that Schema is a Percona Server specific attribute for the slow query log, it would be helpful to note that in the pt-log-player documentation for those not familiar with Percona Server.