Skip to content

Commit

Permalink
#177 Migrate from g2 to er/sz
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Aug 19, 2024
1 parent 8e315d8 commit 6c66633
Show file tree
Hide file tree
Showing 19 changed files with 115 additions and 114 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ GO_ARCH = $(word 2, $(GO_OSARCH))

# Conditional assignment. ('?=')
# Can be overridden with "export"
# Example: "export LD_LIBRARY_PATH=/path/to/my/senzing/g2/lib"
# Example: "export LD_LIBRARY_PATH=/path/to/my/senzing/er/lib"

GOBIN ?= $(shell go env GOPATH)/bin
LD_LIBRARY_PATH ?= /opt/senzing/g2/lib
LD_LIBRARY_PATH ?= /opt/senzing/er/lib

# Export environment variables.

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Documentation and examples for the implementations are at:
[Senzing/sz-sdk-go-core]: https://github.com/senzing-garage/sz-sdk-go-core
[Senzing/sz-sdk-go-grpc]: https://github.com/senzing-garage/sz-sdk-go-grpc
[Senzing/sz-sdk-go-mock]: https://github.com/senzing-garage/sz-sdk-go-mock
[sz-sdk-go-core]: https://pkg.go.dev/github.com/senzing-garage/sz-sdk-go-core
[sz-sdk-go-grpc]: https://pkg.go.dev/github.com/senzing-garage/sz-sdk-go-grpc
[sz-sdk-go-mock]: https://pkg.go.dev/github.com/senzing-garage/sz-sdk-go-mock
[Szconfig]: https://pkg.go.dev/github.com/senzing-garage/sz-sdk-go/szconfig#Szconfig
Expand Down
4 changes: 2 additions & 2 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ These are "one-time tasks" which may already have been completed.
Since the Senzing library is a prerequisite, it must be installed first.

1. Verify Senzing C shared objects, configuration, and SDK header files are installed.
1. `/opt/senzing/g2/lib`
1. `/opt/senzing/g2/sdk/c`
1. `/opt/senzing/er/lib`
1. `/opt/senzing/er/sdk/c`
1. `/etc/opt/senzing`

1. If not installed, see [How to Install Senzing for Go Development].
Expand Down
2 changes: 1 addition & 1 deletion makefiles/darwin.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Variables
# -----------------------------------------------------------------------------

SENZING_DIR ?= /opt/senzing/g2
SENZING_DIR ?= /opt/senzing/er
SENZING_TOOLS_SENZING_DIRECTORY ?= $(SENZING_DIR)

LD_LIBRARY_PATH ?= $(SENZING_TOOLS_SENZING_DIRECTORY)/lib:$(SENZING_TOOLS_SENZING_DIRECTORY)/lib/macos
Expand Down
2 changes: 1 addition & 1 deletion makefiles/linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Variables
# -----------------------------------------------------------------------------

LD_LIBRARY_PATH ?= /opt/senzing/g2/lib
LD_LIBRARY_PATH ?= /opt/senzing/er/lib
SENZING_TOOLS_DATABASE_URL ?= sqlite3://na:na@nowhere/tmp/sqlite/G2C.db
PATH := $(MAKEFILE_DIRECTORY)/bin:/$(HOME)/go/bin:$(PATH)

Expand Down
2 changes: 1 addition & 1 deletion senzing/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const (
SzWithInfo // 62 return "WithInfo" information
)

// Flags used by the Senzing G2Engine.
// Flags used by the Senzing SzEngine.
// These flags combine single-bit flags.
const (
/* Flags for exporting entity data. */
Expand Down
10 changes: 5 additions & 5 deletions senzing/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type SzAbstractFactory interface {
CreateSzProduct(ctx context.Context) (SzProduct, error)
}

// The SzConfig interface is a Golang representation of Senzing's libg2config.h
// The SzConfig interface is a Golang representation of Senzing's libSzconfig.h
type SzConfig interface {
AddDataSource(ctx context.Context, configHandle uintptr, dataSourceCode string) (string, error)
CloseConfig(ctx context.Context, configHandle uintptr) error
Expand All @@ -39,7 +39,7 @@ type SzConfig interface {
ImportConfig(ctx context.Context, configDefinition string) (uintptr, error)
}

// The SzConfigManager interface is a Golang representation of Senzing's libg2configmgr.h
// The SzConfigManager interface is a Golang representation of Senzing's libSzconfigmgr.h
type SzConfigManager interface {
AddConfig(ctx context.Context, configDefinition string, configComments string) (int64, error)
Destroy(ctx context.Context) error
Expand All @@ -50,7 +50,7 @@ type SzConfigManager interface {
SetDefaultConfigID(ctx context.Context, configID int64) error
}

// The SzDiagnostic interface is a Golang representation of Senzing's libg2diagnostic.h
// The SzDiagnostic interface is a Golang representation of Senzing's libSzdiagnostic.h
type SzDiagnostic interface {
CheckDatastorePerformance(ctx context.Context, secondsToRun int) (string, error)
Destroy(ctx context.Context) error
Expand All @@ -60,7 +60,7 @@ type SzDiagnostic interface {
Reinitialize(ctx context.Context, configID int64) error
}

// The SzEngine interface is a Golang representation of Senzing's libg2.h
// The SzEngine interface is a Golang representation of Senzing's libSz.h
type SzEngine interface {
AddRecord(ctx context.Context, dataSourceCode string, recordID string, recordDefinition string, flags int64) (string, error)
CloseExport(ctx context.Context, exportHandle uintptr) error
Expand Down Expand Up @@ -97,7 +97,7 @@ type SzEngine interface {
WhyRecords(ctx context.Context, dataSourceCode1 string, recordID1 string, dataSourceCode2 string, recordID2 string, flags int64) (string, error)
}

// The SzProduct interface is a Golang representation of Senzing's libg2product.h
// The SzProduct interface is a Golang representation of Senzing's libSzproduct.h
type SzProduct interface {
Destroy(ctx context.Context) error
GetLicense(ctx context.Context) (string, error)
Expand Down
2 changes: 1 addition & 1 deletion szconfig/doc.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
The szconfig package is a wrapper over Senzing's G2Config C binding.
The szconfig package is a wrapper over Senzing's SzConfig C binding.
*/
package szconfig
20 changes: 10 additions & 10 deletions szconfig/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ var IDMessages = map[int]string{
706: "Exit " + Prefix + "SetLogLevel(%s) returned (%v).",
707: "Enter " + Prefix + "UnregisterObserver(%s).",
708: "Exit " + Prefix + "UnregisterObserver(%s) returned (%v).",
4001: Prefix + "G2Config_addDataSource(%v, %s) failed. Return code: %d",
4002: Prefix + "G2Config_close(%v) failed. Return code: %d",
4003: Prefix + "G2Config_create() failed. Return code: %d",
4004: Prefix + "G2Config_deleteDataSource(%v, %s) failed. Return code: %d",
4005: Prefix + "G2Config_destroy() failed. Return code: %d",
4006: Prefix + "G2Config_getLastException() failed. Return code: %d",
4007: Prefix + "G2Config_init(%s, %s, %d) failed. Return code: %d",
4008: Prefix + "G2Config_listDataSources(%d) failed. Return code: %d",
4009: Prefix + "G2Config_load(%s) failed. Return code: %d",
4010: Prefix + "G2Config_save(%v) failed. Return code: %d",
4001: Prefix + "SzConfig_addDataSource(%v, %s) failed. Return code: %d",
4002: Prefix + "SzConfig_close(%v) failed. Return code: %d",
4003: Prefix + "SzConfig_create() failed. Return code: %d",
4004: Prefix + "SzConfig_deleteDataSource(%v, %s) failed. Return code: %d",
4005: Prefix + "SzConfig_destroy() failed. Return code: %d",
4006: Prefix + "SzConfig_getLastException() failed. Return code: %d",
4007: Prefix + "SzConfig_init(%s, %s, %d) failed. Return code: %d",
4008: Prefix + "SzConfig_listDataSources(%d) failed. Return code: %d",
4009: Prefix + "SzConfig_load(%s) failed. Return code: %d",
4010: Prefix + "SzConfig_save(%v) failed. Return code: %d",
8001: Prefix + "AddDataSource",
8002: Prefix + "CloseConfig",
8003: Prefix + "CreateConfig",
Expand Down
2 changes: 1 addition & 1 deletion szconfigmanager/doc.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
The szconfigmanager package is a wrapper over Senzing's G2Configmgr C binding.
The szconfigmanager package is a wrapper over Senzing's SzConfigmgr C binding.
*/
package szconfigmanager
16 changes: 8 additions & 8 deletions szconfigmanager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ var IDMessages = map[int]string{
706: "Exit " + Prefix + "SetLogLevel(%s) returned (%v).",
707: "Enter " + Prefix + "UnregisterObserver(%s).",
708: "Exit " + Prefix + "UnregisterObserver(%s) returned (%v).",
4001: Prefix + "G2ConfigMgr_addConfig(%s, %s) failed. Return code: %d",
4002: Prefix + "G2ConfigMgr_destroy() failed. Return code: %d",
4003: Prefix + "G2ConfigMgr_getConfig(%d) failed. Return code: %d",
4004: Prefix + "G2ConfigMgr_getConfigList() failed. Return code: %d",
4005: Prefix + "G2ConfigMgr_getDefaultConfigID() failed. Return code: %d",
4006: Prefix + "G2ConfigMgr_init(%s, %s, %d) failed. Return code: %d",
4007: Prefix + "G2ConfigMgr_replaceDefaultConfigID(%d, %d) failed. Return code: %d",
4008: Prefix + "G2ConfigMgr_setDefaultConfigID(%d) failed. Return code: %d",
4001: Prefix + "SzConfigMgr_addConfig(%s, %s) failed. Return code: %d",
4002: Prefix + "SzConfigMgr_destroy() failed. Return code: %d",
4003: Prefix + "SzConfigMgr_getConfig(%d) failed. Return code: %d",
4004: Prefix + "SzConfigMgr_getConfigList() failed. Return code: %d",
4005: Prefix + "SzConfigMgr_getDefaultConfigID() failed. Return code: %d",
4006: Prefix + "SzConfigMgr_init(%s, %s, %d) failed. Return code: %d",
4007: Prefix + "SzConfigMgr_replaceDefaultConfigID(%d, %d) failed. Return code: %d",
4008: Prefix + "SzConfigMgr_setDefaultConfigID(%d) failed. Return code: %d",
8001: Prefix + "AddConfig",
8002: Prefix + "Destroy",
8003: Prefix + "GetConfig",
Expand Down
2 changes: 1 addition & 1 deletion szdiagnostic/doc.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
The szdiagnostic package is a wrapper over Senzing's G2Diagnostic C binding.
The szdiagnostic package is a wrapper over Senzing's SzDiagnostic C binding.
*/
package szdiagnostic
16 changes: 8 additions & 8 deletions szdiagnostic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ var IDMessages = map[int]string{
706: "Exit " + Prefix + "SetLogLevel(%s) returned (%v).",
707: "Enter " + Prefix + "UnregisterObserver(%s).",
708: "Exit " + Prefix + "UnregisterObserver(%s) returned (%v).",
4001: Prefix + "G2Diagnostic_checkDatastorePerformance(%d) failed. Return code: %d",
4002: Prefix + "G2Diagnostic_destroy() failed. Return code: %d",
4003: Prefix + "G2Diagnostic_getDatastoreInfo() failed. Return code: %d",
4004: Prefix + "G2Diagnostic_getFeature(%d) failed. Return code: %d",
4005: Prefix + "G2Diagnostic_init(%s, %s, %d) failed. Return code: %d",
4006: Prefix + "G2Diagnostic_initWithConfigID(%s, %s, %d, %d) failed. Return code: %d",
4007: Prefix + "G2Diagnostic_purgeRepository() failed. Return Code: %d",
4008: Prefix + "G2Diagnostic_reinit(%d) failed. Return Code: %d",
4001: Prefix + "SzDiagnostic_checkDatastorePerformance(%d) failed. Return code: %d",
4002: Prefix + "SzDiagnostic_destroy() failed. Return code: %d",
4003: Prefix + "SzDiagnostic_getDatastoreInfo() failed. Return code: %d",
4004: Prefix + "SzDiagnostic_getFeature(%d) failed. Return code: %d",
4005: Prefix + "SzDiagnostic_init(%s, %s, %d) failed. Return code: %d",
4006: Prefix + "SzDiagnostic_initWithConfigID(%s, %s, %d, %d) failed. Return code: %d",
4007: Prefix + "SzDiagnostic_purgeRepository() failed. Return Code: %d",
4008: Prefix + "SzDiagnostic_reinit(%d) failed. Return Code: %d",
8001: Prefix + "CheckDatastorePerformance",
8002: Prefix + "Destroy",
8003: Prefix + "GetDatastoreInfo",
Expand Down
2 changes: 1 addition & 1 deletion szengine/doc.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
The szengine package is a wrapper over Senzing's G2 C binding.
The szengine package is a wrapper over Senzing's Sz C binding.
*/
package szengine
120 changes: 60 additions & 60 deletions szengine/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,66 +93,66 @@ var IDMessages = map[int]string{
706: "Exit " + Prefix + "SetLogLevel(%s) returned (%v).",
707: "Enter " + Prefix + "UnregisterObserver(%s).",
708: "Exit " + Prefix + "UnregisterObserver(%s) returned (%v).",
4001: Prefix + "G2_addRecord(%s, %s, %s) failed. Return code: %d",
4002: Prefix + "G2_addRecordWithInfo(%s, %s, %s, %d) failed. Return code: %d",
4003: Prefix + "G2_closeExport(%v) failed. Return code: %d",
4004: Prefix + "G2_deleteRecord(%s, %s) failed. Return code: %d",
4005: Prefix + "G2_deleteRecordWithInfo(%s, %s, %d) failed. Return code: %d",
4006: Prefix + "G2_destroy() failed. Return code: %d",
4007: Prefix + "G2_exportCSVEntityReport(%s, %d) failed. Return code: %d",
4008: Prefix + "G2_exportJSONEntityReport(%d) failed. Return code: %d",
4009: Prefix + "G2_fetchNext(%v) failed. Return code: %d",
4010: Prefix + "G2_findInterestingEntitiesByEntityID(%d, %d) failed. Return code: %d",
4011: Prefix + "G2_findInterestingEntitiesByRecordID(%s, %s, %d) failed. Return code: %d",
4012: Prefix + "G2_findNetworkByEntityID(%s, %d, %d, %d) failed. Return code: %d",
4013: Prefix + "G2_findNetworkByEntityID_V2(%s, %d, %d, %d, %d) failed. Return code: %d",
4014: Prefix + "G2_findNetworkByRecordID(%s, %d, %d, %d) failed. Return code: %d",
4015: Prefix + "G2_findNetworkByRecordID_V2(%s, %d, %d, %d, %d) failed. Return code: %d",
4016: Prefix + "G2_findPathByEntityID(%d, %d, %d) failed. Return code: %d",
4017: Prefix + "G2_findPathByEntityID_V2(%d, %d, %d, %d) failed. Return code: %d",
4018: Prefix + "G2_findPathByRecordID(%s, %s, %s, %s, %d) failed. Return code: %d",
4019: Prefix + "G2_findPathByRecordID_V2(%s, %s, %s, %s, %d, %d) failed. Return code: %d",
4020: Prefix + "G2_findPathExcludingByEntityID(%d, %d, %d, %s) failed. Return code: %d",
4021: Prefix + "G2_findPathExcludingByEntityID_V2(%d, %d, %d, %s, %d) failed. Return code: %d",
4022: Prefix + "G2_findPathExcludingByRecordID(%s, %s, %s, %s %d, %s) failed. Return code: %d",
4023: Prefix + "G2_findPathExcludingByRecordID_V2(%s, %s, %s, %s %d, %s, %d) failed. Return code: %d",
4024: Prefix + "G2_findPathIncludingSourceByEntityID(%d, %d, %d, %s, %s) failed. Return code: %d",
4025: Prefix + "G2_findPathIncludingSourceByEntityID_V2(%d, %d, %d, %s, %s, %d) failed. Return code: %d",
4026: Prefix + "G2_findPathIncludingSourceByRecordID(%s, %s, %s, %s, %d, %s, %s) failed. Return code: %d",
4027: Prefix + "G2_findPathIncludingSourceByRecordID_V2(%s, %s, %s, %s, %d, %s, %s, %d) failed. Return code: %d",
4028: Prefix + "G2_getActiveConfigID() failed. Return code: %d",
4029: Prefix + "G2_getEntityByEntityID(%d) failed. Return code: %d",
4030: Prefix + "G2_getEntityByEntityID_V2(%d, %d) failed. Return code: %d",
4031: Prefix + "G2_getEntityByRecordID(%s, %s) failed. Return code: %d",
4032: Prefix + "G2_getEntityByRecordID_V2(%s, %s, %d) failed. Return code: %d",
4033: Prefix + "G2_getLastException() failed. Return code: %d",
4034: Prefix + "G2_getRecord(%s, %s) failed. Return code: %d",
4035: Prefix + "G2_getRecord_V2(%s, %s, %d) failed. Return code: %d",
4036: Prefix + "G2_getRedoRecord() failed. Return code: %d",
4037: Prefix + "G2_getVirtualEntityByRecordID(%s) failed. Return code: %d",
4038: Prefix + "G2_getVirtualEntityByRecordID_V2(%s, %d) failed. Return code: %d",
4039: Prefix + "G2_howEntityByEntityID(%d) failed. Return code: %d",
4040: Prefix + "G2_howEntityByEntityID_V2(%d, %d) failed. Return code: %d",
4041: Prefix + "G2_init(%s, %s, %d) failed. Return code: %d",
4042: Prefix + "G2_initWithConfigID(%s, %s, %d, %d) failed. Return code: %d",
4043: Prefix + "G2_primeEngine() failed. Return code: %d",
4044: Prefix + "G2_processRedoRecord(%s) failed. Return code: %d",
4045: Prefix + "G2_processRedoRecordWithInfo(%s) failed. Return code: %d",
4046: Prefix + "G2_reevaluateEntity(%d, %d) failed. Return code: %d",
4047: Prefix + "G2_reevaluateEntityWithInfo(%d, %d) failed. Return code: %d",
4048: Prefix + "G2_reevaluateRecord(%s, %s, %d) failed. Return code: %d",
4049: Prefix + "G2_reevaluateRecordWithInfo(%s, %s, %d) failed. Return code: %d",
4050: Prefix + "G2_reinit(%d) failed. Return code: %d",
4051: Prefix + "G2_searchByAttributes(%s) failed. Return code: %d",
4052: Prefix + "G2_searchByAttributes_V2(%s, %d) failed. Return code: %d",
4053: Prefix + "G2_searchByAttributes_V3(%s, %s, %d) failed. Return code: %d",
4054: Prefix + "G2_stats() failed. Return code: %d",
4055: Prefix + "G2_whyEntities(%d, %d) failed. Return code: %d",
4056: Prefix + "G2_whyEntities_V2(%d, %d, %d) failed. Return code: %d",
4057: Prefix + "G2_whyRecordInEntity(%s, %s) failed. Return code: %d",
4058: Prefix + "G2_whyRecordInEntity_V2(%s, %s, %d) failed. Return code: %d",
4059: Prefix + "G2_whyRecords(%s, %s, %s, %s) failed. Return code: %d",
4060: Prefix + "G2_whyRecords_V2(%s, %s, %s, %s, %d) failed. Return code: %d",
4001: Prefix + "Sz_addRecord(%s, %s, %s) failed. Return code: %d",
4002: Prefix + "Sz_addRecordWithInfo(%s, %s, %s, %d) failed. Return code: %d",
4003: Prefix + "Sz_closeExport(%v) failed. Return code: %d",
4004: Prefix + "Sz_deleteRecord(%s, %s) failed. Return code: %d",
4005: Prefix + "Sz_deleteRecordWithInfo(%s, %s, %d) failed. Return code: %d",
4006: Prefix + "Sz_destroy() failed. Return code: %d",
4007: Prefix + "Sz_exportCSVEntityReport(%s, %d) failed. Return code: %d",
4008: Prefix + "Sz_exportJSONEntityReport(%d) failed. Return code: %d",
4009: Prefix + "Sz_fetchNext(%v) failed. Return code: %d",
4010: Prefix + "Sz_findInterestingEntitiesByEntityID(%d, %d) failed. Return code: %d",
4011: Prefix + "Sz_findInterestingEntitiesByRecordID(%s, %s, %d) failed. Return code: %d",
4012: Prefix + "Sz_findNetworkByEntityID(%s, %d, %d, %d) failed. Return code: %d",
4013: Prefix + "Sz_findNetworkByEntityID_V2(%s, %d, %d, %d, %d) failed. Return code: %d",
4014: Prefix + "Sz_findNetworkByRecordID(%s, %d, %d, %d) failed. Return code: %d",
4015: Prefix + "Sz_findNetworkByRecordID_V2(%s, %d, %d, %d, %d) failed. Return code: %d",
4016: Prefix + "Sz_findPathByEntityID(%d, %d, %d) failed. Return code: %d",
4017: Prefix + "Sz_findPathByEntityID_V2(%d, %d, %d, %d) failed. Return code: %d",
4018: Prefix + "Sz_findPathByRecordID(%s, %s, %s, %s, %d) failed. Return code: %d",
4019: Prefix + "Sz_findPathByRecordID_V2(%s, %s, %s, %s, %d, %d) failed. Return code: %d",
4020: Prefix + "Sz_findPathExcludingByEntityID(%d, %d, %d, %s) failed. Return code: %d",
4021: Prefix + "Sz_findPathExcludingByEntityID_V2(%d, %d, %d, %s, %d) failed. Return code: %d",
4022: Prefix + "Sz_findPathExcludingByRecordID(%s, %s, %s, %s %d, %s) failed. Return code: %d",
4023: Prefix + "Sz_findPathExcludingByRecordID_V2(%s, %s, %s, %s %d, %s, %d) failed. Return code: %d",
4024: Prefix + "Sz_findPathIncludingSourceByEntityID(%d, %d, %d, %s, %s) failed. Return code: %d",
4025: Prefix + "Sz_findPathIncludingSourceByEntityID_V2(%d, %d, %d, %s, %s, %d) failed. Return code: %d",
4026: Prefix + "Sz_findPathIncludingSourceByRecordID(%s, %s, %s, %s, %d, %s, %s) failed. Return code: %d",
4027: Prefix + "Sz_findPathIncludingSourceByRecordID_V2(%s, %s, %s, %s, %d, %s, %s, %d) failed. Return code: %d",
4028: Prefix + "Sz_getActiveConfigID() failed. Return code: %d",
4029: Prefix + "Sz_getEntityByEntityID(%d) failed. Return code: %d",
4030: Prefix + "Sz_getEntityByEntityID_V2(%d, %d) failed. Return code: %d",
4031: Prefix + "Sz_getEntityByRecordID(%s, %s) failed. Return code: %d",
4032: Prefix + "Sz_getEntityByRecordID_V2(%s, %s, %d) failed. Return code: %d",
4033: Prefix + "Sz_getLastException() failed. Return code: %d",
4034: Prefix + "Sz_getRecord(%s, %s) failed. Return code: %d",
4035: Prefix + "Sz_getRecord_V2(%s, %s, %d) failed. Return code: %d",
4036: Prefix + "Sz_getRedoRecord() failed. Return code: %d",
4037: Prefix + "Sz_getVirtualEntityByRecordID(%s) failed. Return code: %d",
4038: Prefix + "Sz_getVirtualEntityByRecordID_V2(%s, %d) failed. Return code: %d",
4039: Prefix + "Sz_howEntityByEntityID(%d) failed. Return code: %d",
4040: Prefix + "Sz_howEntityByEntityID_V2(%d, %d) failed. Return code: %d",
4041: Prefix + "Sz_init(%s, %s, %d) failed. Return code: %d",
4042: Prefix + "Sz_initWithConfigID(%s, %s, %d, %d) failed. Return code: %d",
4043: Prefix + "Sz_primeEngine() failed. Return code: %d",
4044: Prefix + "Sz_processRedoRecord(%s) failed. Return code: %d",
4045: Prefix + "Sz_processRedoRecordWithInfo(%s) failed. Return code: %d",
4046: Prefix + "Sz_reevaluateEntity(%d, %d) failed. Return code: %d",
4047: Prefix + "Sz_reevaluateEntityWithInfo(%d, %d) failed. Return code: %d",
4048: Prefix + "Sz_reevaluateRecord(%s, %s, %d) failed. Return code: %d",
4049: Prefix + "Sz_reevaluateRecordWithInfo(%s, %s, %d) failed. Return code: %d",
4050: Prefix + "Sz_reinit(%d) failed. Return code: %d",
4051: Prefix + "Sz_searchByAttributes(%s) failed. Return code: %d",
4052: Prefix + "Sz_searchByAttributes_V2(%s, %d) failed. Return code: %d",
4053: Prefix + "Sz_searchByAttributes_V3(%s, %s, %d) failed. Return code: %d",
4054: Prefix + "Sz_stats() failed. Return code: %d",
4055: Prefix + "Sz_whyEntities(%d, %d) failed. Return code: %d",
4056: Prefix + "Sz_whyEntities_V2(%d, %d, %d) failed. Return code: %d",
4057: Prefix + "Sz_whyRecordInEntity(%s, %s) failed. Return code: %d",
4058: Prefix + "Sz_whyRecordInEntity_V2(%s, %s, %d) failed. Return code: %d",
4059: Prefix + "Sz_whyRecords(%s, %s, %s, %s) failed. Return code: %d",
4060: Prefix + "Sz_whyRecords_V2(%s, %s, %s, %s, %d) failed. Return code: %d",
8001: Prefix + "AddRecord",
8002: Prefix + "CloseExport",
8003: Prefix + "CountRedoRecords",
Expand Down
Loading

0 comments on commit 6c66633

Please sign in to comment.