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
Issue is mostly likely because when comparing property default and current value, these values are compared as strings but null and "null" are different values.
If nullValue is not set / default, nulls are output as empty strings. Setting "null" value to nullValue property allowed to output nulls as "null" (worked in 1.6, broke in 1.7). We do have !reset command which can reset properties to their defaults but still nulls will be output as empty strings in this case.
PR with the fix - #300.
Result:
Though if to set null value in camel case everything works as expected:
Result:
Issue is mostly likely because when comparing property default and current value, these values are compared as strings but null and "null" are different values.
https://github.com/julianhyde/sqlline/blob/master/src/main/java/sqlline/SqlLineOpts.java#L410
The text was updated successfully, but these errors were encountered: