mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules
* Revert "[TD-13408]<test>: move tests directory out"
This reverts commit 7db7bd9337.
* revert to make tests back
* immigrate file change in stand-alone repo to TDengine
* remove tests repository checkout
Co-authored-by: tangfangzhi <fztang@taosdata.com>
26 lines
561 B
Gnuplot
26 lines
561 B
Gnuplot
#!/user/bin/gnuplot
|
|
reset
|
|
set terminal png
|
|
|
|
set title filename font ",20"
|
|
|
|
set ylabel "Time in Seconds"
|
|
|
|
set xdata time
|
|
set timefmt "%Y%m%d"
|
|
set format x "%Y-%m-%d"
|
|
set xlabel "Date"
|
|
|
|
set style data linespoints
|
|
|
|
set terminal pngcairo size 1024,768 enhanced font 'Segoe UI, 10'
|
|
set output filename . '.png'
|
|
set datafile separator ','
|
|
|
|
set key reverse Left outside
|
|
set grid
|
|
|
|
|
|
plot filename . '.csv' using 1:2 title "Create 10,000 Tables", \
|
|
"" using 1:3 title "Delete 10,000 Tables", \
|
|
"" using 1:4 title "Create 10,000 Tables and Insert 100,000 records"
|