WL#1722: Falcon: streamline/simplify @@variable creation process

Affects: Server-6.0   —   Status: Complete

now to add a new system variable one needs to
1. create an instance of a appropriate sys_var_xxx class (or write a new class
if there is no one)
2. add it to a list of variables visible in SELECT @@xxx
3. add it to the list of mysqld --command-line-options
4. add it to the list for SHOW VARIABLES

steps 2,3,4 should be eliminated.

one of the possible approaches - in a constructor each variable adds itself to
the above mentioned lists.

See also WL#1160

See WL#2936 as it provides a mechanism for a plugin to declare system 
variables which are accessible from the command line, as @@ variables and SHOW 
VARIABLES.

In order to implement this feature, the existing Falcon command line options 
(declared within sql/mysqld.cc) and system variables (sql/set_var.cc) should 
be removed and be redeclared within the Falcon code 
(storage/falcon/ha_falcon.cc)