Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
Class ObjectIdentifier {
	Optional<String> catalogName;

	Optional<String> databaseName;

	String objectName;
}


34. Changes to FunctionLookup interface

...

Code Block
languagejava
/**
 * Resolves a function. ObjectIdentifer should either contain both catalog and database names, or neither of them.
 *
 * @param oi object identifier of function
 * @return An optional result of FunctionLookup
 */
public Optional<FunctionLookup.Result> lookupFunction(ObjectIdentifier oi);


5. Changes to FunctionCatalog class

...