Skip to content

Commit 770d5dd

Browse files
authored
Renamed package (#508)
* rebased * Removed debug print * removed empty file * update package name to pth_10 * rebased * removed empty files
1 parent 7ef5383 commit 770d5dd

374 files changed

Lines changed: 945 additions & 945 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/com/teragrep/pth10/ast/ContextValue.java renamed to src/main/java/com/teragrep/pth_10/ast/ContextValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
/** Interface to get value from Parser context */
4949
public interface ContextValue<T> {

src/main/java/com/teragrep/pth10/ast/DPLAuditInformation.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLAuditInformation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
/**
4949
* Audit information for datasource auditing support

src/main/java/com/teragrep/pth10/ast/DPLInternalStreamingQuery.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLInternalStreamingQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import org.apache.spark.sql.streaming.StreamingQuery;
4949

src/main/java/com/teragrep/pth10/ast/DPLInternalStreamingQueryListener.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLInternalStreamingQueryListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import com.teragrep.pth_06.ArchiveMicroStreamReader;
4949
import org.apache.spark.sql.Row;

src/main/java/com/teragrep/pth10/ast/DPLParserCatalystContext.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLParserCatalystContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import com.teragrep.functions.dpf_02.AbstractStep;
49-
import com.teragrep.pth10.steps.Flushable;
49+
import com.teragrep.pth_10.steps.Flushable;
5050
import com.typesafe.config.Config;
5151
import org.apache.spark.sql.Dataset;
5252
import org.apache.spark.sql.Row;

src/main/java/com/teragrep/pth10/ast/DPLParserCatalystVisitor.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLParserCatalystVisitor.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import com.teragrep.functions.dpf_02.AbstractStep;
49-
import com.teragrep.pth10.ast.bo.*;
50-
import com.teragrep.pth10.ast.bo.Token.Type;
51-
import com.teragrep.pth10.ast.commands.logicalstatement.LogicalStatementCatalyst;
52-
import com.teragrep.pth10.ast.commands.logicalstatement.LogicalStatementXML;
53-
import com.teragrep.pth10.ast.commands.logicalstatement.TimeStatement;
54-
import com.teragrep.pth10.ast.commands.transformstatement.TransformStatement;
55-
import com.teragrep.pth10.steps.EmptyDataframeStep;
56-
import com.teragrep.pth10.steps.logicalCatalyst.LogicalCatalystStep;
57-
import com.teragrep.pth10.steps.subsearch.SubsearchStep;
49+
import com.teragrep.pth_10.ast.bo.*;
50+
import com.teragrep.pth_10.ast.bo.Token.Type;
51+
import com.teragrep.pth_10.ast.commands.logicalstatement.LogicalStatementCatalyst;
52+
import com.teragrep.pth_10.ast.commands.logicalstatement.LogicalStatementXML;
53+
import com.teragrep.pth_10.ast.commands.logicalstatement.TimeStatement;
54+
import com.teragrep.pth_10.ast.commands.transformstatement.TransformStatement;
55+
import com.teragrep.pth_10.steps.EmptyDataframeStep;
56+
import com.teragrep.pth_10.steps.logicalCatalyst.LogicalCatalystStep;
57+
import com.teragrep.pth_10.steps.subsearch.SubsearchStep;
5858
import com.teragrep.pth_03.antlr.DPLLexer;
5959
import com.teragrep.pth_03.antlr.DPLParser;
6060
import com.teragrep.pth_03.antlr.DPLParserBaseVisitor;

src/main/java/com/teragrep/pth10/ast/DPLParserConfig.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLParserConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

48-
import com.teragrep.pth10.ast.time.RelativeTimeParser;
49-
import com.teragrep.pth10.ast.time.RelativeTimestamp;
48+
import com.teragrep.pth_10.ast.time.RelativeTimeParser;
49+
import com.teragrep.pth_10.ast.time.RelativeTimestamp;
5050
import org.slf4j.Logger;
5151
import org.slf4j.LoggerFactory;
5252

src/main/java/com/teragrep/pth10/ast/DPLTimeFormat.java renamed to src/main/java/com/teragrep/pth_10/ast/DPLTimeFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import java.text.ParseException;
4949
import java.text.SimpleDateFormat;

src/main/java/com/teragrep/pth10/ast/DefaultTimeFormat.java renamed to src/main/java/com/teragrep/pth_10/ast/DefaultTimeFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import java.text.ParseException;
4949
import java.text.SimpleDateFormat;

src/main/java/com/teragrep/pth10/ast/MapTypeColumn.java renamed to src/main/java/com/teragrep/pth_10/ast/MapTypeColumn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Teragrep, the applicable Commercial License may apply to this file if you as
4444
* a licensee so wish it.
4545
*/
46-
package com.teragrep.pth10.ast;
46+
package com.teragrep.pth_10.ast;
4747

4848
import org.apache.spark.sql.Dataset;
4949
import org.apache.spark.sql.Row;

0 commit comments

Comments
 (0)