--
You received this message because you are subscribed to the Google Groups "MariaDB ColumnStore" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mariadb-columns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/mariadb-columnstore/8bd208d3-3a84-4e45-bcd2-2a42d649f9c8n%40googlegroups.com.
[root@mcs1 tmp]# head financialticks.csv
yellow,1252060378,91.6,49.6
white,1394759195,40.23,99.61
silver,1093083353,49.11,37.0
silver,918112014,85.3,76.8
navy,1621380770,20.36,28.86
aqua,850124079,57.9,39.18
purple,467173058,84.71,32.7
gray,1165210570,72.18,35.44
lime,278593393,84.77,68.73
[root@mcs1 tmp]# cpimport -m 1 -s ',' -E '"' google_groups FinancialTicks -l financialticks.csv
2023-05-06 22:43:55 (1257) INFO : Running distributed import (mode 1) on all PMs...
2023-05-06 22:47:52 (1257) INFO : For table google_groups.FinancialTicks: 1000000000 rows processed and 1000000000 rows inserted.
2023-05-06 22:47:52 (1257) INFO : Bulk load completed, total run time : 236.949 seconds
[root@mcs1 tmp]# mariadb -vvv google_groups -e "SELECT * FROM FinancialTicks WHERE Timestamp >= 594075923 AND Timestamp <= 1037354268 AND Asset = 'teal';"
…
| teal | 809763260 | 79.16 | 31.45 |
| teal | 803870149 | 96.57 | 48.87 |
| teal | 955395282 | 94.59 | 32.7 |
| teal | 1025037492 | 83.71 | 57.41 |
| teal | 771100012 | 68.71 | 70.69 |
+-------+------------+-------+-------+
17561280 rows in set (36.045 sec)