1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-18 23:57:33 +02:00

Simplify storage object names.

Remove "File" and "Driver" from object names so they are shorter and easier to keep consistent.

Also remove the "driver" directory so storage implementations are visible directly under "storage".
This commit is contained in:
David Steele
2019-05-03 15:46:15 -04:00
parent 8c712d89eb
commit 32ca27a20b
76 changed files with 1287 additions and 1267 deletions

View File

@ -7,7 +7,7 @@ Test Protocol
#include "common/io/bufferWrite.h"
#include "common/regExp.h"
#include "storage/storage.h"
#include "storage/driver/posix/storage.h"
#include "storage/posix/storage.h"
#include "version.h"
#include "common/harnessConfig.h"
@ -62,7 +62,7 @@ testRun(void)
{
FUNCTION_HARNESS_VOID();
Storage *storageTest = storageDriverPosixNew(
Storage *storageTest = storagePosixNew(
strNew(testPath()), STORAGE_MODE_FILE_DEFAULT, STORAGE_MODE_PATH_DEFAULT, true, NULL);
// *****************************************************************************************************************************