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
Error setting configuration: propertiesfile: java.lang.IllegalArgumentException: No method matching "setpropertiesfile" was found in sqlline.SqlLineOpts.
the warning start happening after execution of command !set (at that time in properties file there will be written something like sqlline.propertiesfile=~/.sqlline/sqlline.properties). After that each time sqlline reads the file it will warn with that
from one side SqlLineOpts does not have method setpropertiesfile but it has
so the value from property file does not make sense.
What is the main idea of that? Should this value be applied after reading a file or should we just skip setter's call for this value?
The text was updated successfully, but these errors were encountered:
Warnings like
the warning start happening after execution of command
!set
(at that time in properties file there will be written something likesqlline.propertiesfile=~/.sqlline/sqlline.properties
). After that each time sqlline reads the file it will warn with thatfrom one side
SqlLineOpts
does not have methodsetpropertiesfile
but it hasso the value from property file does not make sense.
What is the main idea of that? Should this value be applied after reading a file or should we just skip setter's call for this value?
The text was updated successfully, but these errors were encountered: