Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
145b8b2
TAJO-2063: Refactor FileTablespace::commitOutputData.
blrunner Feb 1, 2016
61a0c68
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 1, 2016
cdcbc54
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 1, 2016
21382dd
Apply parallelStream
blrunner Feb 1, 2016
faf383e
Trigger for CI build
blrunner Feb 1, 2016
fec2ff1
Replace parallelStream to Stream
blrunner Feb 1, 2016
dfa58f9
Replace List type to Set type with ConcurrentHashMap
blrunner Feb 2, 2016
b548b1b
Use parallelStream instead of stream
blrunner Feb 2, 2016
7e4b115
Check if staging directory exits
blrunner Feb 2, 2016
1565788
Replace parallelStream to stream
blrunner Feb 2, 2016
0ac8526
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 4, 2016
d06391c
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 5, 2016
c6892d2
Remove unnecessary codes
blrunner Feb 5, 2016
c71d2d4
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 11, 2016
ebad542
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 16, 2016
edca776
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 17, 2016
6f1c3f2
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 17, 2016
0a2835b
Trigger travis CI build
blrunner Feb 18, 2016
5fe772c
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 19, 2016
0d9df0b
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Feb 22, 2016
8f73ed0
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Mar 7, 2016
f009fde
Trigger for travis CI build
blrunner Mar 7, 2016
86a5cb0
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/taj…
blrunner Mar 18, 2016
80cfc4d
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
blrunner Mar 18, 2016
d3bb67f
Trigger for travis CI build
blrunner Mar 18, 2016
9fcc9fd
TAJO-2091: Error or progress update should use stderr instead of stdout.
hyunsik Mar 21, 2016
6826358
TAJO-2102: Migrate to Apache Orc from Presto's one.
jihoonson Mar 23, 2016
8dad551
TAJO-2099: Implement an Adapter for legacy Schema.
hyunsik Mar 28, 2016
6096663
Merge branch 'TAJO-2063' of https://github.com/blrunner/tajo into TAJ…
blrunner Mar 28, 2016
2110a82
Trigger for travis CI build
blrunner Mar 28, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Release 0.12.0 - unreleased

IMPROVEMENT

TAJO-2099: Implement an Adapter for the legacy Schema. (hyunsik)

TAJO-2091: Error or progress update should use stderr instead of stdout.
(hyunsik)

TAJO-2064: Supporting auto-completion in Tsql. (Jongyoung Park via jaehwa)

TAJO-2043: Implement new data type and schema. (hyunsik)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public static PartitionMethodDesc newPartitionMethodDesc(CatalogProtos.Partition
* @return
*/
public static SchemaProto getQualfiedSchema(String tableName, SchemaProto schema) {
Schema restored = new Schema(schema);
Schema restored = SchemaFactory.newV1(schema);
restored.setQualifier(tableName);
return restored.getProto();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public IndexDesc(IndexDescProto proto) {
proto.getIndexName(), new URI(proto.getIndexPath()),
keySortSpecs,
proto.getIndexMethod(), proto.getIsUnique(), proto.getIsClustered(),
new Schema(proto.getTargetRelationSchema()));
SchemaFactory.newV1(proto.getTargetRelationSchema()));
} catch (URISyntaxException e) {
e.printStackTrace();
}
Expand Down
Loading