diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-23 16:51:16 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-23 16:51:16 +0300 |
commit | 687417e5c57aa4c40573b16da0e40e3be8ba7dae (patch) | |
tree | 992b8c678f63bae97639198cddadce42fe09a2da /storage/myisam | |
parent | cfbdb5d21072b16ae94c04b6b46db42f500be4c8 (diff) | |
parent | 1f1d5606e08c928e3da98bfeb13a7cccc307105d (diff) | |
download | mariadb-git-687417e5c57aa4c40573b16da0e40e3be8ba7dae.tar.gz |
Merge 10.2 into 10.3
Diffstat (limited to 'storage/myisam')
-rw-r--r-- | storage/myisam/rt_test.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/storage/myisam/rt_test.c b/storage/myisam/rt_test.c index 353e20951cd..62c9539eb66 100644 --- a/storage/myisam/rt_test.c +++ b/storage/myisam/rt_test.c @@ -104,7 +104,6 @@ static int run_test(const char *filename) int key_length=8; int null_fields=0; int nrecords=sizeof(rt_data)/(sizeof(double)*4);/* 3000;*/ - int rec_length=0; int uniques=0; int i, max_i; int error; @@ -124,14 +123,12 @@ static int run_test(const char *filename) recinfo[0].type=FIELD_NORMAL; recinfo[0].length=1; /* For NULL bits */ - rec_length=1; /* Define 2*ndims columns for coordinates*/ for (i=1; i<=2*ndims ;i++){ recinfo[i].type=FIELD_NORMAL; recinfo[i].length=key_length; - rec_length+=key_length; } /* Define a key with 2*ndims segments */ |