You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Oracle.jl
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -41,21 +41,21 @@ function __init__()
41
41
check_deps()
42
42
43
43
# check size of structs affected by C unions
44
-
@assertsizeof(OraDataBuffer) ==sizeof_dpiDataBuffer() "OraDataBuffer should have sizeof $(sizeof_dpiDataBuffer()) bytes"
45
-
@assertsizeof(OraData) ==sizeof_dpiData() "OraData should have sizeof $(sizeof_dpiData()) bytes"
46
-
@assertsizeof(OraTimestamp) ==sizeof_dpiTimestamp() "OraTimestamp should have sizeof $(sizeof_dpiTimestamp()) bytes"
47
-
@assertsizeof(OraErrorInfo) ==sizeof_dpiErrorInfo() "OraErrorInfo should have sizeof $(sizeof_dpiErrorInfo()) bytes"
48
-
@assertsizeof(OraCommonCreateParams) ==sizeof_dpiCommonCreateParams() "OraCommonCreateParams should have size of $(sizeof_dpiCommonCreateParams()) bytes"
49
-
@assertsizeof(OraAppContext) ==sizeof_dpiAppContext() "OraAppContext should have size of $(sizeof_dpiAppContext()) bytes"
50
-
@assertsizeof(OraPoolCreateParams) ==sizeof_dpiPoolCreateParams() "OraPoolCreateParams should have sizeof $(sizeof_dpiPoolCreateParams()) bytes"
51
-
@assertsizeof(OraConnCreateParams) ==sizeof_dpiConnCreateParams() "OraConnCreateParams should have sizeof $(sizeof_dpiConnCreateParams()) bytes"
52
-
@assertsizeof(OraDataTypeInfo) ==sizeof_dpiDataTypeInfo() "OraDataTypeInfo should have size of $(sizeof_dpiDataTypeInfo()) bytes"
53
-
@assertsizeof(OraQueryInfo) ==sizeof_dpiQueryInfo() "OraQueryInfo should have sizeof $(sizeof_dpiQueryInfo()) bytes"
54
-
@assertsizeof(OraStmtInfo) ==sizeof_dpiStmtInfo() "OraStmtInfo should have sizeof $(sizeof_dpiStmtInfo()) bytes"
55
-
@assertsizeof(OraVersionInfo) ==sizeof_dpiVersionInfo() "OraVersionInfo should have sizeof $(sizeof_dpiVersionInfo()) bytes"
56
-
@assertsizeof(OraBytes) ==sizeof_dpiBytes() "OraBytes should have sizeof $(sizeof_dpiBytes()) bytes"
57
-
@assertsizeof(OraEncodingInfo) ==sizeof_dpiEncodingInfo() "OraEncodingInfo should have sizeof $(sizeof_dpiEncodingInfo()) bytes"
58
-
@assertsizeof(OraObjectTypeInfo) ==sizeof_dpiObjectTypeInfo() "OraObjectTypeInfo should have sizeof $(sizeof_dpiObjectTypeInfo()) bytes"
44
+
@assertsizeof(OraDataBuffer) ==sizeof_dpiDataBuffer() "OraDataBuffer should have sizeof $(sizeof_dpiDataBuffer()) bytes. Found $(sizeof(OraDataBuffer)) bytes."
45
+
@assertsizeof(OraData) ==sizeof_dpiData() "OraData should have sizeof $(sizeof_dpiData()) bytes. Found $(sizeof(OraData)) bytes."
46
+
@assertsizeof(OraTimestamp) ==sizeof_dpiTimestamp() "OraTimestamp should have sizeof $(sizeof_dpiTimestamp()) bytes. Found $(sizeof(OraTimestamp)) bytes."
47
+
@assertsizeof(OraErrorInfo) ==sizeof_dpiErrorInfo() "OraErrorInfo should have sizeof $(sizeof_dpiErrorInfo()) bytes. Found $(sizeof(OraErrorInfo)) bytes."
48
+
@assertsizeof(OraCommonCreateParams) ==sizeof_dpiCommonCreateParams() "OraCommonCreateParams should have size of $(sizeof_dpiCommonCreateParams()) bytes. Found $(sizeof(OraCommonCreateParams)) bytes."
49
+
@assertsizeof(OraAppContext) ==sizeof_dpiAppContext() "OraAppContext should have size of $(sizeof_dpiAppContext()) bytes. Found $(sizeof(OraAppContext)) bytes."
50
+
@assertsizeof(OraPoolCreateParams) ==sizeof_dpiPoolCreateParams() "OraPoolCreateParams should have sizeof $(sizeof_dpiPoolCreateParams()) bytes. Found $(sizeof(OraPoolCreateParams)) bytes."
51
+
@assertsizeof(OraConnCreateParams) ==sizeof_dpiConnCreateParams() "OraConnCreateParams should have sizeof $(sizeof_dpiConnCreateParams()) bytes. Found $(sizeof(OraConnCreateParams)) bytes."
52
+
@assertsizeof(OraDataTypeInfo) ==sizeof_dpiDataTypeInfo() "OraDataTypeInfo should have size of $(sizeof_dpiDataTypeInfo()) bytes. Found $(sizeof(OraDataTypeInfo)) bytes."
53
+
@assertsizeof(OraQueryInfo) ==sizeof_dpiQueryInfo() "OraQueryInfo should have sizeof $(sizeof_dpiQueryInfo()) bytes. Found $(sizeof(OraQueryInfo)) bytes."
54
+
@assertsizeof(OraStmtInfo) ==sizeof_dpiStmtInfo() "OraStmtInfo should have sizeof $(sizeof_dpiStmtInfo()) bytes. Found $(sizeof(OraStmtInfo)) bytes."
55
+
@assertsizeof(OraVersionInfo) ==sizeof_dpiVersionInfo() "OraVersionInfo should have sizeof $(sizeof_dpiVersionInfo()) bytes. Found $(sizeof(OraVersionInfo)) bytes."
56
+
@assertsizeof(OraBytes) ==sizeof_dpiBytes() "OraBytes should have sizeof $(sizeof_dpiBytes()) bytes. Found $(sizeof(OraBytes)) bytes."
57
+
@assertsizeof(OraEncodingInfo) ==sizeof_dpiEncodingInfo() "OraEncodingInfo should have sizeof $(sizeof_dpiEncodingInfo()) bytes. Found $(sizeof(OraEncodingInfo)) bytes."
58
+
@assertsizeof(OraObjectTypeInfo) ==sizeof_dpiObjectTypeInfo() "OraObjectTypeInfo should have sizeof $(sizeof_dpiObjectTypeInfo()) bytes. Found $(sizeof(OraObjectTypeInfo)) bytes."
59
59
#@assert sizeof(OraNumber) == sizeof_dpiNumber() # see issue #21
0 commit comments