-
- Downloads
[ADQL,TAP] Fix bug (reported by G. Landais) in the understanding of UNKNOWN
types. The notion of "unknown type" is different in function of the target object: - a DBType and a FunctionDef have an unknown type if their function isUnknown() returns true. In such case, the other functions such as isNumeric/String/Geometry() will return false. - an ADQLOperand (e.g. ADQLColumn) does NOT have a isUnknown() function. But if the type of the operand is unknown, its functions isNumeric(), isString() and isGeometry() must ALL return true. Otherwise, just one of these functions can return true.
Showing
- src/adql/db/DBType.java 10 additions, 9 deletionssrc/adql/db/DBType.java
- src/adql/db/FunctionDef.java 17 additions, 6 deletionssrc/adql/db/FunctionDef.java
- src/adql/query/operand/ADQLColumn.java 3 additions, 3 deletionssrc/adql/query/operand/ADQLColumn.java
- src/tap/formatter/JSONFormat.java 2 additions, 2 deletionssrc/tap/formatter/JSONFormat.java
- src/tap/formatter/VOTableFormat.java 1 addition, 1 deletionsrc/tap/formatter/VOTableFormat.java
- test/adql/db/TestFunctionDef.java 13 additions, 14 deletionstest/adql/db/TestFunctionDef.java
- test/adql/parser/UnknownTypes.java 34 additions, 10 deletionstest/adql/parser/UnknownTypes.java
Loading
Please register or sign in to comment