1 22 23 package org.xquark.extractor.mysql.sql; 24 25 import org.xquark.extractor.sql.Context; 26 import org.xquark.extractor.sql.SqlExpression; 27 28 public class SqlRenameItem extends org.xquark.extractor.sql.SqlRenameItem 29 { 30 private static final String RCSRevision = "$Revision: 1.1 $"; 31 private static final String RCSName = "$Name: $"; 32 33 public SqlRenameItem() {} 34 35 public SqlRenameItem(SqlExpression item, String name) 36 { 37 super(item, name); 38 } 39 40 public String toSql(Context context) { 41 return super.toSql(context,false); 42 } 43 } 44 | Popular Tags |