[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23279803 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -883,6 +903,14 @@ public void readFields(DataInput input) throw

[jira] [Resolved] (PHOENIX-630) Make MR and Pig writers use the same set of core hadoop classes

2015-01-20 Thread maghamravikiran (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-630?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] maghamravikiran resolved PHOENIX-630. - Resolution: Fixed [~giacomotay...@gmail.com] - Yes. This issue can be closed as its fixed

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23278539 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/StatementContext.java --- @@ -98,11 +98,18 @@ public StatementContext(PhoenixStatement st

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23278448 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/PostIndexDDLCompiler.java --- @@ -85,6 +90,36 @@ public MutationPlan compile(final PTabl

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23278380 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,311 @@ +/* + * Licensed to the

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23278372 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,311 @@ +/* + * Licensed to the

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23276893 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,311 @@ +/* + * Licensed to the Apa

[jira] [Resolved] (PHOENIX-1300) Allow sub-queries to choose different execution path other than hash-join

2015-01-20 Thread Maryann Xue (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maryann Xue resolved PHOENIX-1300. -- Resolution: Fixed Fix Version/s: (was: 3.2) (was: 4.2)

[jira] [Resolved] (PHOENIX-1393) Add test cases for sub-queries in UPSERT and DELETE statement

2015-01-20 Thread Maryann Xue (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1393?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maryann Xue resolved PHOENIX-1393. -- Resolution: Fixed Fix Version/s: 3.3 4.3 > Add test cases for sub-qu

[jira] [Resolved] (PHOENIX-1533) Last key part not taken into child/parent optimization

2015-01-20 Thread Maryann Xue (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1533?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maryann Xue resolved PHOENIX-1533. -- Resolution: Fixed Fix Version/s: 3.3 4.3 > Last key part not taken i

[jira] [Resolved] (PHOENIX-1560) Join between global index and data table if INDEX hint used

2015-01-20 Thread Maryann Xue (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1560?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maryann Xue resolved PHOENIX-1560. -- Resolution: Fixed Fix Version/s: 3.3 4.3 > Join between global index

[jira] [Resolved] (PHOENIX-1591) Return all rows instead of no rows if IN clause subquery gets optimized out from semi-join and returns empty result

2015-01-20 Thread Maryann Xue (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1591?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Maryann Xue resolved PHOENIX-1591. -- Resolution: Fixed Fix Version/s: 3.3 > Return all rows instead of no rows if IN clause

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275602 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java --- @@ -953,20 +973,39 @@ public MutationState createIndex(CreateIndexStat

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275593 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -388,23 +426,21 @@ private IndexMaintainer(PTable dataTable, PTable

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275567 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -326,6 +322,48 @@ private IndexMaintainer(PTable dataTable, PTable

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275510 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/JoinCompiler.java --- @@ -788,7 +788,7 @@ private void addProjectedColumn(List projectedColu

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275488 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/FromCompiler.java --- @@ -184,7 +184,7 @@ public static ColumnResolver getResolverForCompile

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275475 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java --- @@ -953,20 +973,39 @@ public MutationState createIndex(CreateIndexStat

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275462 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java --- @@ -953,20 +973,39 @@ public MutationState createIndex(CreateIndexStat

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on the pull request: https://github.com/apache/phoenix/pull/34#issuecomment-70776305 Thanks for the updates. It's looking very good! I'm not sure which ones you've implemented or not, though. Would you mind responding to my comments to let me know on

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275302 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -883,6 +903,14 @@ public void readFields(DataInput input) throw

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275243 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -883,6 +903,14 @@ public void readFields(DataInput input) throw

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275183 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,302 @@ +/* + * Licensed to the

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread JamesRTaylor
Github user JamesRTaylor commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23275041 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,311 @@ +/* + * Licensed to the

[jira] [Commented] (PHOENIX-1591) Return all rows instead of no rows if IN clause subquery gets optimized out from semi-join and returns empty result

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1591?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14285040#comment-14285040 ] James Taylor commented on PHOENIX-1591: --- [~maryannxue] - please mark this as fixed

[jira] [Commented] (PHOENIX-1142) Improve CsvBulkLoadTool to parse different Date formats

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1142?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14285041#comment-14285041 ] James Taylor commented on PHOENIX-1142: --- [~gabriel.reid] - should we close this on

[jira] [Commented] (PHOENIX-630) Make MR and Pig writers use the same set of core hadoop classes

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-630?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14285034#comment-14285034 ] James Taylor commented on PHOENIX-630: -- [~maghamraviki...@gmail.com] - just wanted t

[jira] [Commented] (PHOENIX-1516) Add RAND() built-in function

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14285005#comment-14285005 ] Hudson commented on PHOENIX-1516: - FAILURE: Integrated in Phoenix-master #564 (See [htt

[jira] [Commented] (PHOENIX-1516) Add RAND() built-in function

2015-01-20 Thread Lars Hofhansl (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284989#comment-14284989 ] Lars Hofhansl commented on PHOENIX-1516: Cool. Thanks. Pushed to master. Waiting

[jira] [Updated] (PHOENIX-1516) Add RAND() built-in function

2015-01-20 Thread Lars Hofhansl (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lars Hofhansl updated PHOENIX-1516: --- Fix Version/s: 5.0.0 > Add RAND() built-in function > > >

[jira] [Updated] (PHOENIX-1516) Add RAND() built-in function

2015-01-20 Thread Lars Hofhansl (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lars Hofhansl updated PHOENIX-1516: --- Summary: Add RAND() built-in function (was: Add RANDOM built-in function) > Add RAND() buil

[jira] [Commented] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284977#comment-14284977 ] James Taylor commented on PHOENIX-1516: --- +1. Looks good, [~lhofhansl]. > Add RAND

[ANNOUNCE] New "Who is Using Apache Phoenix" page added

2015-01-20 Thread James Taylor
Hello community, Our new Who is Using Apache Phoenix page is live [1]. Thank you very much for all your excellent use case descriptions and quotes. Please let me know if I've missed your company and you'd like to be added. Thanks, James (on behalf of The Apache Phoenix team) [1] http://phoenix.ap

[jira] [Commented] (PHOENIX-1601) Performance.py script not working in binary distribution

2015-01-20 Thread Mujtaba Chohan (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284964#comment-14284964 ] Mujtaba Chohan commented on PHOENIX-1601: - Sure. I'll take at it tomorrow and co

[jira] [Commented] (PHOENIX-1601) Performance.py script not working in binary distribution

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284944#comment-14284944 ] James Taylor commented on PHOENIX-1601: --- Thanks for the patch, [~jacobtardieu]. Wo

[jira] [Updated] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread Lars Hofhansl (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lars Hofhansl updated PHOENIX-1516: --- Attachment: 1516-v7.txt James and I had another look. We found a threading issue in cloneRow

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23270696 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -883,6 +903,14 @@ public void readFields(DataInput input) throws I

[jira] [Commented] (PHOENIX-1601) Performance.py script not working in binary distribution

2015-01-20 Thread Jacob Tardieu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284902#comment-14284902 ] Jacob Tardieu commented on PHOENIX-1601: A PR has been opened on Github: https:/

[GitHub] phoenix pull request: PHOENIX-1601 Fix performance script for bina...

2015-01-20 Thread jacobtardieu
GitHub user jacobtardieu opened a pull request: https://github.com/apache/phoenix/pull/35 PHOENIX-1601 Fix performance script for binary distribution of phoenix Change the PHOENIX_TEST_JAR_PATTERN since it was also matching flume tests jars. The performance.py script wasn't

[jira] [Updated] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Taylor updated PHOENIX-1516: -- Attachment: 1516-v6.patch Attaching entire patch this time. > Add RANDOM built-in function >

[jira] [Created] (PHOENIX-1601) Performance.py script not working in binary distribution

2015-01-20 Thread Jacob Tardieu (JIRA)
Jacob Tardieu created PHOENIX-1601: -- Summary: Performance.py script not working in binary distribution Key: PHOENIX-1601 URL: https://issues.apache.org/jira/browse/PHOENIX-1601 Project: Phoenix

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284707#comment-14284707 ] Hudson commented on PHOENIX-1600: - SUCCESS: Integrated in Phoenix-3.0-hadoop1 #355 (See

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23268496 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -883,6 +903,14 @@ public void readFields(DataInput input) throws I

[jira] [Updated] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Taylor updated PHOENIX-1516: -- Attachment: 1516-v6.patch Attaching v6 patch with the changes I mentioned plus a test for UPSE

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284682#comment-14284682 ] Hudson commented on PHOENIX-1600: - SUCCESS: Integrated in Phoenix-master #563 (See [htt

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Samarth Jain (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284679#comment-14284679 ] Samarth Jain commented on PHOENIX-1600: --- Pushed to 3.0 as well. > Scanner is left

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23268273 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java --- @@ -953,20 +973,39 @@ public MutationState createIndex(CreateIndexStat

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23267987 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,302 @@ +/* + * Licensed to the Apa

[jira] [Updated] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated PHOENIX-1600: Attachment: phoenix-1600-3.0.patch > Scanner is left unclosed in MetaDataEndpointImpl#doDropTable() >

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Samarth Jain (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284656#comment-14284656 ] Samarth Jain commented on PHOENIX-1600: --- +1. Committed the patch to master and 4.0

[jira] [Commented] (PHOENIX-1059) Support index regions merge on their corresponding data regions merge

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284643#comment-14284643 ] Hudson commented on PHOENIX-1059: - SUCCESS: Integrated in Phoenix-master #562 (See [htt

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23266265 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/compile/IndexColumnExpressionCompiler.java --- @@ -0,0 +1,311 @@ +/* + * Licensed to the Apa

[jira] [Updated] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated PHOENIX-1600: Attachment: phoenix-1600-002.patch > Scanner is left unclosed in MetaDataEndpointImpl#doDropTable() >

[GitHub] phoenix pull request: PHOENIX-514 Support functional indexes

2015-01-20 Thread twdsilva
Github user twdsilva commented on a diff in the pull request: https://github.com/apache/phoenix/pull/34#discussion_r23265883 --- Diff: phoenix-core/src/main/java/org/apache/phoenix/index/IndexMaintainer.java --- @@ -954,13 +981,14 @@ public int getEstimatedByteSize() {

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Samarth Jain (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284618#comment-14284618 ] Samarth Jain commented on PHOENIX-1600: --- Patch looks good [~tedyu]. Minor nit - ca

[jira] [Resolved] (PHOENIX-1575) Identical sql type values for UNSIGNED_TIMESTAMP and UNSIGNED_DATE

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Taylor resolved PHOENIX-1575. --- Resolution: Fixed Fix Version/s: 3.2.3 4.2.3 3.3

[jira] [Updated] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated PHOENIX-1600: Attachment: (was: phoenix-1600-001.patch) > Scanner is left unclosed in MetaDataEndpointImpl#doDropTab

[jira] [Commented] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284605#comment-14284605 ] James Taylor commented on PHOENIX-1600: --- Thanks for the patch, [~tedyu]. If you ha

[jira] [Updated] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated PHOENIX-1600: Attachment: phoenix-1600-001.patch > Scanner is left unclosed in MetaDataEndpointImpl#doDropTable() >

[jira] [Created] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
Ted Yu created PHOENIX-1600: --- Summary: Scanner is left unclosed in MetaDataEndpointImpl#doDropTable() Key: PHOENIX-1600 URL: https://issues.apache.org/jira/browse/PHOENIX-1600 Project: Phoenix Iss

[jira] [Updated] (PHOENIX-1600) Scanner is left unclosed in MetaDataEndpointImpl#doDropTable()

2015-01-20 Thread Ted Yu (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1600?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ted Yu updated PHOENIX-1600: Attachment: phoenix-1600-001.patch > Scanner is left unclosed in MetaDataEndpointImpl#doDropTable() >

[jira] [Commented] (PHOENIX-1059) Support index regions merge on their corresponding data regions merge

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1059?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284571#comment-14284571 ] Hudson commented on PHOENIX-1059: - FAILURE: Integrated in Phoenix-master #561 (See [htt

[jira] [Commented] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284475#comment-14284475 ] James Taylor commented on PHOENIX-1516: --- One more thing: also do a clone of the ro

[jira] [Commented] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284468#comment-14284468 ] James Taylor commented on PHOENIX-1516: --- Also, my advice to do the reset through a

[jira] [Commented] (PHOENIX-1516) Add RANDOM built-in function

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1516?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284365#comment-14284365 ] James Taylor commented on PHOENIX-1516: --- Looked at the problem you're running into

[jira] [Commented] (PHOENIX-1575) Identical sql type values for UNSIGNED_TIMESTAMP and UNSIGNED_DATE

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284343#comment-14284343 ] Hudson commented on PHOENIX-1575: - SUCCESS: Integrated in Phoenix-3.0-hadoop1 #354 (See

[jira] [Commented] (PHOENIX-1575) Identical sql type values for UNSIGNED_TIMESTAMP and UNSIGNED_DATE

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1575?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284326#comment-14284326 ] Hudson commented on PHOENIX-1575: - SUCCESS: Integrated in Phoenix-master #560 (See [htt

[jira] [Commented] (PHOENIX-1594) Using KeyOnlyFilter for simple query of select count(1) from

2015-01-20 Thread Hudson (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1594?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14284172#comment-14284172 ] Hudson commented on PHOENIX-1594: - SUCCESS: Integrated in Phoenix-master #559 (See [htt

[jira] [Resolved] (PHOENIX-1582) Support TimeOut in JDBC

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1582?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Taylor resolved PHOENIX-1582. --- Resolution: Fixed Fix Version/s: 3.3 4.3 Assignee: James T

[jira] [Updated] (PHOENIX-1599) Improve end-to-end unit test performance

2015-01-20 Thread James Taylor (JIRA)
[ https://issues.apache.org/jira/browse/PHOENIX-1599?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Taylor updated PHOENIX-1599: -- Summary: Improve end-to-end unit test performance (was: Improve unit test performance) > Imp

[jira] [Created] (PHOENIX-1599) Improve unit test performance

2015-01-20 Thread James Taylor (JIRA)
James Taylor created PHOENIX-1599: - Summary: Improve unit test performance Key: PHOENIX-1599 URL: https://issues.apache.org/jira/browse/PHOENIX-1599 Project: Phoenix Issue Type: Bug