diff options
| author | Lucas Faria Mendes <lucas.oliveira1676@etec.sp.gov.br> | 2025-12-05 13:49:15 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.oliveira1676@etec.sp.gov.br> | 2025-12-05 13:49:15 +0000 |
| commit | bb8bb6a15e83dc2b0a33133c8d738de2594d4f58 (patch) | |
| tree | 36f23ee9c30db9da5f094f3619bf42a1a68c8227 | |
| parent | 1efc65efa0052fa138636d675aba748ecd961bfe (diff) | |
| download | sqlite-zig-bb8bb6a15e83dc2b0a33133c8d738de2594d4f58.tar.gz sqlite-zig-bb8bb6a15e83dc2b0a33133c8d738de2594d4f58.zip | |
idk2
| -rw-r--r-- | src/schema.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/schema.zig b/src/schema.zig index 1244516..54a0049 100644 --- a/src/schema.zig +++ b/src/schema.zig @@ -2,7 +2,6 @@ const std = @import("std"); const varint = @import("varint.zig"); const record = @import("record.zig"); -<<<<<<< HEAD fn getIndexRootpage(allocator: std.mem.Allocator, file: *std.fs.File, page_size: u16, table_name: []const u8, column_name: []const u8) !?u32 { var buf: [2]u8 = undefined; _ = try file.seekTo(103); @@ -487,8 +486,6 @@ fn traverseBTree(allocator: std.mem.Allocator, file: *std.fs.File, page_size: u1 } } -======= ->>>>>>> parent of cba3ef1 (codecrafters submit [skip ci]) pub fn getRootpage(allocator: std.mem.Allocator, file: *std.fs.File, page_size: u16, table_name: []const u8) !u32 { var buf: [2]u8 = undefined; _ = try file.seekTo(103); |