samples: add sample CSV files

This commit is contained in:
Bruno BELANYI 2022-08-23 16:50:47 +02:00
parent 1b7471dfb8
commit e66f4f687d
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,6 @@
type, client, tx, amount
deposit, 1, 1, 1.0
deposit, 2, 2, 2.0
deposit, 1, 3, 2.0
withdrawal, 1, 4, 1.5
withdrawal, 2, 5, 3.0
1 type client tx amount
2 deposit 1 1 1.0
3 deposit 2 2 2.0
4 deposit 1 3 2.0
5 withdrawal 1 4 1.5
6 withdrawal 2 5 3.0

6
samples/simple.csv Normal file
View File

@ -0,0 +1,6 @@
type, client, tx, amount
deposit, 1, 1, 1.0
deposit, 2, 2, 2.0
deposit, 1, 3, 2.0
withdrawal, 1, 4, 1.5
withdrawal, 2, 5, 2.0
1 type client tx amount
2 deposit 1 1 1.0
3 deposit 2 2 2.0
4 deposit 1 3 2.0
5 withdrawal 1 4 1.5
6 withdrawal 2 5 2.0