Commit 96ceaeb5 authored by unknown's avatar unknown
Browse files

WL#3244 "CSV engine: convert mmap to read/write calls"


mysql-test/r/csv.result:
  Correct result file
storage/csv/ha_tina.cc:
   Get rid of mmap in tina. Use usual reads/writes
   to access the file.
storage/csv/ha_tina.h:
    Add Transparent_file class, which hides details of access
    to the file. Perform a cleanup & add new functions.
parent 4d861dad
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4944,10 +4944,10 @@ val
UPDATE  bug13894 SET val=6 WHERE val=10;
SELECT * FROM bug13894;
val
5
11
6
6
5
11
DROP TABLE bug13894;
DROP TABLE IF EXISTS bug14672;
CREATE TABLE bug14672 (c1 integer) engine = CSV;
+291 −172

File changed.

Preview size limit exceeded, changes collapsed.

+64 −5

File changed.

Preview size limit exceeded, changes collapsed.