OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mapd.parser.extension.ddl.SqlCustomDdl Class Reference
+ Inheritance diagram for com.mapd.parser.extension.ddl.SqlCustomDdl:
+ Collaboration diagram for com.mapd.parser.extension.ddl.SqlCustomDdl:

Public Member Functions

 SqlCustomDdl (final SqlOperator operator, final SqlParserPos pos)
 
List< SqlNode > getOperandList ()
 
String toString ()
 
- Public Member Functions inherited from com.mapd.parser.extension.ddl.JsonSerializableDdl
default String toJsonString ()
 

Private Attributes

String command
 

Detailed Description

Definition at line 12 of file SqlCustomDdl.java.

Constructor & Destructor Documentation

com.mapd.parser.extension.ddl.SqlCustomDdl.SqlCustomDdl ( final SqlOperator  operator,
final SqlParserPos  pos 
)
inline

Definition at line 16 of file SqlCustomDdl.java.

16  {
17  super(operator, pos);
18  this.command = operator.getName();
19  }

Member Function Documentation

List<SqlNode> com.mapd.parser.extension.ddl.SqlCustomDdl.getOperandList ( )
inline

Definition at line 22 of file SqlCustomDdl.java.

22  {
23  return null;
24  }
String com.mapd.parser.extension.ddl.SqlCustomDdl.toString ( )
inline

Definition at line 27 of file SqlCustomDdl.java.

References com.mapd.parser.extension.ddl.JsonSerializableDdl.toJsonString().

Referenced by com.mapd.parser.extension.ddl.SqlCopyTable.SqlCopyTable(), com.mapd.parser.extension.ddl.SqlDumpTable.SqlDumpTable(), com.mapd.parser.extension.ddl.SqlExportQuery.SqlExportQuery(), and com.mapd.parser.extension.ddl.SqlRestoreTable.SqlRestoreTable().

27  {
28  return toJsonString();
29  }

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Member Data Documentation

String com.mapd.parser.extension.ddl.SqlCustomDdl.command
private

Definition at line 14 of file SqlCustomDdl.java.


The documentation for this class was generated from the following file: