id
int64
0
10.2k
text_id
stringlengths
17
67
repo_owner
stringclasses
232 values
repo_name
stringclasses
295 values
issue_url
stringlengths
39
89
pull_url
stringlengths
37
87
comment_url
stringlengths
37
94
links_count
int64
1
2
link_keyword
stringclasses
12 values
issue_title
stringlengths
7
197
issue_body
stringlengths
45
21.3k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
diff_url
stringlengths
120
170
diff
stringlengths
478
132k
changed_files
stringlengths
47
2.6k
changed_files_exts
stringclasses
22 values
changed_files_count
int64
1
22
java_changed_files_count
int64
1
22
kt_changed_files_count
int64
0
0
py_changed_files_count
int64
0
0
code_changed_files_count
int64
1
22
repo_symbols_count
int64
32.6k
242M
repo_tokens_count
int64
6.59k
49.2M
repo_lines_count
int64
992
6.2M
repo_files_without_tests_count
int64
12
28.1k
changed_symbols_count
int64
0
36.1k
changed_tokens_count
int64
0
6.5k
changed_lines_count
int64
0
561
changed_files_without_tests_count
int64
1
17
issue_symbols_count
int64
45
21.3k
issue_words_count
int64
2
1.39k
issue_tokens_count
int64
13
4.47k
issue_lines_count
int64
1
325
issue_links_count
int64
0
19
issue_code_blocks_count
int64
0
31
pull_create_at
timestamp[s]
stars
int64
10
44.3k
language
stringclasses
8 values
languages
stringclasses
296 values
license
stringclasses
2 values
162
square/okhttp/1085/1034
square
okhttp
https://github.com/square/okhttp/issues/1034
https://github.com/square/okhttp/pull/1085
https://github.com/square/okhttp/pull/1085
1
closes
SpdyConnection.pushExecutor has zero keep-alive time
https://github.com/square/okhttp/blob/master/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java#L158 Because of the 0ms keep-alive time, the pushExecutor creates (and destroys) a new thread on every callback. This seems unnecessarily expensive, compared to reusing the thread, particularly in s...
9aa1268899524f0f750ab35fa363f2ed3cec29cf
712e56de25c8c212d8c85c6b316faeb8789d731c
https://github.com/square/okhttp/compare/9aa1268899524f0f750ab35fa363f2ed3cec29cf...712e56de25c8c212d8c85c6b316faeb8789d731c
diff --git a/okhttp/src/main/java/com/squareup/okhttp/Connection.java b/okhttp/src/main/java/com/squareup/okhttp/Connection.java index 11bf1f217..0806c7954 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/Connection.java +++ b/okhttp/src/main/java/com/squareup/okhttp/Connection.java @@ -85,7 +85,7 @@ public final ...
['okhttp/src/main/java/com/squareup/okhttp/Connection.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java']
{'.java': 2}
2
2
0
0
2
736,645
166,586
21,524
114
297
93
5
2
475
53
105
6
1
0
2014-10-11T14:11:59
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
161
square/okhttp/1106/938
square
okhttp
https://github.com/square/okhttp/issues/938
https://github.com/square/okhttp/pull/1106
https://github.com/square/okhttp/pull/1106
1
closes
SpdyConnection synchronization problem in goAway
We call SpdyStream.receiveRstStream (synchronizes on the stream) while holding the lock on SpdyConnection.this. We should release the SpdyConnection lock before acquiring the SpdyStream lock.
125df557fbeb9c77eb17872acac2eb156428d2ed
8f1bc30cd1e821b8b3745502a0f442f54cdebce8
https://github.com/square/okhttp/compare/125df557fbeb9c77eb17872acac2eb156428d2ed...8f1bc30cd1e821b8b3745502a0f442f54cdebce8
diff --git a/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java b/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java index 0b6fa2d5f..d3ebee2e3 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java +++ b/okhttp/src/main/java/com/squareup/...
['okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java']
{'.java': 1}
1
1
0
0
1
755,423
170,699
21,981
117
1,054
232
20
1
192
24
43
2
0
0
2014-10-26T14:28:50
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
170
square/okhttp/518/184
square
okhttp
https://github.com/square/okhttp/issues/184
https://github.com/square/okhttp/pull/518
https://github.com/square/okhttp/pull/518
1
closes
OkHttp changes the global SSL context, breaks other HTTP clients
We're enabling SPDY for the shared SSL context, and other HTTP clients like HttpURLConnection don't anticipate this, causing them to freak out and crash the app. @skyisle's original report... Here is backtrace. DEBUG I backtrace: DEBUG I #00 pc 00022430 /system/lib/libssl.so (SSL_select_next_proto+25) DEBU...
de6d505c03419a53e0387802a6cc2196572dd99e
5d7fdbaf30a411c56666462bd032d86e8eb4ddf7
https://github.com/square/okhttp/compare/de6d505c03419a53e0387802a6cc2196572dd99e...5d7fdbaf30a411c56666462bd032d86e8eb4ddf7
diff --git a/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java b/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java index 68e1cfadb..b76b5cd45 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java +++ b/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java @@ -15,8 +15,8 @@ */ ...
['okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java']
{'.java': 1}
1
1
0
0
1
688,744
159,125
20,229
100
1,840
403
37
1
1,769
183
605
27
0
0
2014-02-09T00:24:27
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
169
square/okhttp/628/627
square
okhttp
https://github.com/square/okhttp/issues/627
https://github.com/square/okhttp/pull/628
https://github.com/square/okhttp/pull/628
1
fix
SpdyConnection clears the old settings without merging with the new server settings causing the window size always set as -1
When debugging an issue with client requests hanging on SpdyStream.waitUntilWritable(), we found that the window size is set as -1 in SpdyStream.java at line: this.bytesLeftInWriteWindow = connection.peerSettings.getInitialWindowSize(); After tracing down the issue, the problem turned out to be line 662 of https://g...
945619c3f451bba092f772adbd62cd0a6fd7ec3b
12ba9103d825b776d6cf4f74704332f4118ec1be
https://github.com/square/okhttp/compare/945619c3f451bba092f772adbd62cd0a6fd7ec3b...12ba9103d825b776d6cf4f74704332f4118ec1be
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java index 44459b8c9..294684f1b 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java +++ b/okhttp-tests/src/test/...
['okhttp/src/main/java/com/squareup/okhttp/internal/spdy/Settings.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SpdyConnectionTest.java',...
{'.java': 5}
5
5
0
0
5
735,611
170,055
21,803
106
2,646
547
49
3
687
84
152
6
1
0
2014-03-10T21:05:36
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
168
square/okhttp/631/627
square
okhttp
https://github.com/square/okhttp/issues/627
https://github.com/square/okhttp/pull/631
https://github.com/square/okhttp/pull/631
1
fix
SpdyConnection clears the old settings without merging with the new server settings causing the window size always set as -1
When debugging an issue with client requests hanging on SpdyStream.waitUntilWritable(), we found that the window size is set as -1 in SpdyStream.java at line: this.bytesLeftInWriteWindow = connection.peerSettings.getInitialWindowSize(); After tracing down the issue, the problem turned out to be line 662 of https://g...
0d774185b616c7d471822f22f57f947412ef593d
83156632582465e93f462f311c0e6b340393c896
https://github.com/square/okhttp/compare/0d774185b616c7d471822f22f57f947412ef593d...83156632582465e93f462f311c0e6b340393c896
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java index 44459b8c9..294684f1b 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java +++ b/okhttp-tests/src/test/...
['okhttp/src/main/java/com/squareup/okhttp/internal/spdy/Settings.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SettingsTest.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/SpdyConnectionTest.java',...
{'.java': 5}
5
5
0
0
5
707,538
163,749
20,895
102
2,646
547
49
3
687
84
152
6
1
0
2014-03-11T04:15:42
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
167
square/okhttp/737/215
square
okhttp
https://github.com/square/okhttp/issues/215
https://github.com/square/okhttp/pull/737
https://github.com/square/okhttp/pull/737
1
closes
Creating HttpResponseCache causes StrictMode violation
When cache is created I'm having this violation: 06-18 11:19:42.607: E/StrictMode(4300): A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource leaks. 06-18 11:19:42.607: E/StrictMode(4300): java.lang.Throwable: Explicit termination method 'close'...
6486179b9d9c888a818c85384eed88fa0a8768a6
c51382a430a2adb8a29cb59976af76b2cb48e386
https://github.com/square/okhttp/compare/6486179b9d9c888a818c85384eed88fa0a8768a6...c51382a430a2adb8a29cb59976af76b2cb48e386
diff --git a/okhttp/src/main/java/com/squareup/okhttp/HttpResponseCache.java b/okhttp/src/main/java/com/squareup/okhttp/HttpResponseCache.java index e299d5721..2b701c335 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/HttpResponseCache.java +++ b/okhttp/src/main/java/com/squareup/okhttp/HttpResponseCache.java @@ ...
['okhttp/src/main/java/com/squareup/okhttp/HttpResponseCache.java']
{'.java': 1}
1
1
0
0
1
663,416
150,136
19,555
92
240
46
8
1
772
60
237
9
0
0
2014-04-20T08:00:05
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
166
square/okhttp/769/745
square
okhttp
https://github.com/square/okhttp/issues/745
https://github.com/square/okhttp/pull/769
https://github.com/square/okhttp/pull/769
1
fixes
Can't execute DELETE without body.
I'm trying to create Request just as: ``` Request.Builder builder = new Request.Builder().url("URL"); builder.method("DELETE", null); ``` (because there are no `.delete()` method) When I'm trying to execute such request it crashes, with error message: `java.lang.IllegalStateException: Cannot stream a request body wi...
04aee71eb5007c87d857c4c2690689e89722f092
520d9fc2bc6b251a998b58794070f8bebee9d682
https://github.com/square/okhttp/compare/04aee71eb5007c87d857c4c2690689e89722f092...520d9fc2bc6b251a998b58794070f8bebee9d682
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java index d5851488f..c44f386b8 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java @@ -65,6 +65,14...
['okhttp-tests/src/test/java/com/squareup/okhttp/internal/huc/JavaApiConverterTest.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/http/HttpEngine.java', 'okhttp/src/main/java/com/squareup/okhttp/Call.java', 'okhttp/src/main/java/com/squareup/okhttp/Request.java', 'okhttp/src/main/java/com/squareup/okhttp/int...
{'.java': 8}
8
8
0
0
8
665,782
150,731
19,663
94
1,266
272
31
5
761
109
172
18
0
1
2014-04-26T15:57:33
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
165
square/okhttp/939/933
square
okhttp
https://github.com/square/okhttp/issues/933
https://github.com/square/okhttp/pull/939
https://github.com/square/okhttp/pull/939
1
closes
Certain SPDY requests always timeout
This simple request to fetch a .mp3 always timeouts. Some requests to the same domain work though. Other clients (Browsers, curl, etc) have no problem. ``` java String url = "https://s.auspiel.de/sounds/effects/mischen-1.mp3"; OkHttpClient httpClient = new OkHttpClient(); httpClient.setReadTimeout(10, TimeUnit.SECONDS...
7213e9b6b9e1508c349ccd6b13b894bd5d8bf96d
6171f554512ce314d5b7008fc660a1697887581c
https://github.com/square/okhttp/compare/7213e9b6b9e1508c349ccd6b13b894bd5d8bf96d...6171f554512ce314d5b7008fc660a1697887581c
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/Http2ConnectionTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/Http2ConnectionTest.java index 5bcb09e38..e700dd6c6 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/Http2ConnectionTest.java +++ b/o...
['okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/Http2ConnectionTest.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/Spdy3ConnectionTest.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyStream.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnect...
{'.java': 4}
4
4
0
0
4
723,492
163,303
21,251
113
883
192
11
2
2,973
166
700
55
4
2
2014-06-18T02:26:03
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
164
square/okhttp/948/947
square
okhttp
https://github.com/square/okhttp/issues/947
https://github.com/square/okhttp/pull/948
https://github.com/square/okhttp/pull/948
1
closes
Caching broken by transparent gzip header mismatch
Following the technique described in the Cache javadoc (http://square.github.io/okhttp/javadoc/com/squareup/okhttp/Cache.html) we added the Cache-Control max-stale header to ensure we get a cached response when offline. We're doing this through Retrofit's RequestInterceptor, like so: ``` requestFacade.addHeader("Cach...
eb40f47753ce1a7d45bb3fbcf7eb28ac6e7e2479
94f9a1719cc420be061b16e2da03258552c5060b
https://github.com/square/okhttp/compare/eb40f47753ce1a7d45bb3fbcf7eb28ac6e7e2479...94f9a1719cc420be061b16e2da03258552c5060b
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java index 93163450b..b78a68e92 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java @@ -920,6 +...
['okhttp/src/main/java/com/squareup/okhttp/internal/http/OkHeaders.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java']
{'.java': 2}
2
2
0
0
2
724,213
163,458
21,264
113
328
66
6
1
1,178
150
280
16
2
2
2014-06-19T12:32:28
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
155
square/okhttp/1065/1036
square
okhttp
https://github.com/square/okhttp/issues/1036
https://github.com/square/okhttp/pull/1065
https://github.com/square/okhttp/pull/1065#issuecomment-57098303
1
fixes
okhttp 2.0.0 OkHttpClient.cancel(tag) doesn't work
The Recipes [Canceling a Call](https://github.com/square/okhttp/wiki/Recipes#canceling-a-call) worked, but after I used `OkHttpClient.cancel(tag)` instead, it didn't work. My code: ``` java import java.io.IOException; import java.util.concurrent.*; import com.squareup.okhttp.*; public class Test { private final ...
4cdf0a90b3643d198014a56bf619dd9587820fca
38d57953ee7a22a6f87d97ed15e69f17abb2c16f
https://github.com/square/okhttp/compare/4cdf0a90b3643d198014a56bf619dd9587820fca...38d57953ee7a22a6f87d97ed15e69f17abb2c16f
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java index 40519c61d..cefb681be 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java @@ -1172,6 +117...
['okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java', 'okhttp/src/main/java/com/squareup/okhttp/Dispatcher.java', 'okhttp/src/main/java/com/squareup/okhttp/Call.java']
{'.java': 4}
4
4
0
0
4
725,400
163,726
21,246
114
1,504
317
41
3
2,017
201
485
57
3
2
2014-09-28T19:02:03
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
156
square/okhttp/1259/1043
square
okhttp
https://github.com/square/okhttp/issues/1043
https://github.com/square/okhttp/pull/1259
https://github.com/square/okhttp/pull/1259
1
closes
Don't recover if a non-GET request fails
Currently it can silently retry requests, but now it's forbidden: http://tools.ietf.org/html/rfc7230 A user agent MUST NOT automatically retry a request with a non- idempotent method unless it has some means to know that the request semantics are actually idempotent, regardless of the method, or some means t...
24750b59c4a06e77635cec6ce6999c3db86ff7e4
786e3b3048b84721c73a046b02a9edcbb6927686
https://github.com/square/okhttp/compare/24750b59c4a06e77635cec6ce6999c3db86ff7e4...786e3b3048b84721c73a046b02a9edcbb6927686
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java index 25eb85f95..2255dd8f6 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java @@ -704,6 +704,...
['okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/CallTest.java', 'okhttp/src/main/java/com/squareup/okhttp/internal/http/HttpEngine.java']
{'.java': 3}
3
3
0
0
3
876,114
202,976
24,677
132
1,578
336
33
2
430
58
96
11
2
0
2014-12-30T23:47:05
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
157
square/okhttp/1254/1158
square
okhttp
https://github.com/square/okhttp/issues/1158
https://github.com/square/okhttp/pull/1254
https://github.com/square/okhttp/pull/1254
1
closes
Should okhttp be caching HTTP 307 (or 302) responses according to the w3 document?
I am using retrofit and okhttp in my Android app to download documents, images and music files. The files are hosted on Amazon through a CDN so the URLs change often. My backend server will try to use redirects to decrease the need to have to constantly update my content on my mobile app every time the CDN url changes....
64f2af812bef505b6cbc1693aa8b504d9dbbb42e
1d6f0e75d599e2cb02f0fe182f7dbf966cd5cb2b
https://github.com/square/okhttp/compare/64f2af812bef505b6cbc1693aa8b504d9dbbb42e...1d6f0e75d599e2cb02f0fe182f7dbf966cd5cb2b
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java index 9fba4601c..0fd174648 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java @@ -121,9 +...
['okhttp/src/main/java/com/squareup/okhttp/internal/http/CacheStrategy.java', 'okhttp-urlconnection/src/test/java/com/squareup/okhttp/UrlConnectionCacheTest.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/CacheTest.java']
{'.java': 3}
3
3
0
0
3
875,001
202,735
24,643
132
1,919
416
44
1
3,541
539
802
69
2
0
2014-12-29T22:54:57
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
160
square/okhttp/1122/1119
square
okhttp
https://github.com/square/okhttp/issues/1119
https://github.com/square/okhttp/pull/1122
https://github.com/square/okhttp/pull/1122
1
fixes
ConcurrentModificationException
I wouldn't deem this high priority but it did crash a device. Android 4.4.2 OkHttp 2.0.0 ``` bash java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry(HashMap.java:806) at java.util.HashMap$ValueIterator.next(HashMap.java:838) at com.squareup.okhttp.internal.spdy....
912d09e7da8830b831ee8f3461e0c66161fc82c8
3820b5c3355a0d5e48691c43481c6201a033a62c
https://github.com/square/okhttp/compare/912d09e7da8830b831ee8f3461e0c66161fc82c8...3820b5c3355a0d5e48691c43481c6201a033a62c
diff --git a/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java b/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java index d3ebee2e3..458fb6db2 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java +++ b/okhttp/src/main/java/com/squareup/...
['okhttp/src/main/java/com/squareup/okhttp/internal/spdy/SpdyConnection.java']
{'.java': 1}
1
1
0
0
1
756,101
170,838
21,993
117
106
25
2
1
821
38
212
19
1
1
2014-11-04T02:31:17
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
159
square/okhttp/1235/1191
square
okhttp
https://github.com/square/okhttp/issues/1191
https://github.com/square/okhttp/pull/1235
https://github.com/square/okhttp/pull/1235
1
closes
Crash with Facebook SDK
When I set `URL.setURLStreamHandlerFactory(new OkUrlFactory(client));` accordingly to https://github.com/square/picasso/issues/749, my app crashes because of the Facebook SDK : ``` Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void com.squareup.okhttp.internal.spdy.SpdyStream.close(co...
e536bca6d7b2eb64054ee9845ca43dab19b020a7
0e199f608909793892b7883614c0d20a94c27916
https://github.com/square/okhttp/compare/e536bca6d7b2eb64054ee9845ca43dab19b020a7...0e199f608909793892b7883614c0d20a94c27916
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java index 2c275e028..670361c60 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java +++ b/okhttp-tes...
['okhttp/src/main/java/com/squareup/okhttp/internal/http/SpdyTransport.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HttpOverSpdyTest.java']
{'.java': 2}
2
2
0
0
2
869,272
201,747
24,498
132
93
22
2
1
2,325
92
485
30
1
1
2014-12-26T02:05:55
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
158
square/okhttp/1249/1239
square
okhttp
https://github.com/square/okhttp/issues/1239
https://github.com/square/okhttp/pull/1249
https://github.com/square/okhttp/pull/1249
1
closes
ConnectionPool is broken with MAX_CONNECTIONS_TO_CLEANUP
After merging @nfuller's recent leak fix, I noticed we have a new problem. Previously we were pretty eager to trim the idle connections down to the promised limits. An application that quickly created 100 connections would just as quickly see 95 of those connections evicted! With the new fix, it looks like we won't ev...
f1a27df8f9a895f6ef7c1e718e09c65726161a26
98c74ace40b089f2769afb3e56c59a64eef327cb
https://github.com/square/okhttp/compare/f1a27df8f9a895f6ef7c1e718e09c65726161a26...98c74ace40b089f2769afb3e56c59a64eef327cb
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/ConnectionPoolTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/ConnectionPoolTest.java index 075153ddf..0bdc9f58a 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/ConnectionPoolTest.java +++ b/okhttp-tests/src/test/java/com/squareup/okhttp...
['okhttp-tests/src/test/java/com/squareup/okhttp/ConnectionPoolTest.java', 'okhttp/src/main/java/com/squareup/okhttp/Connection.java', 'okhttp/src/main/java/com/squareup/okhttp/ConnectionPool.java']
{'.java': 3}
3
3
0
0
3
869,670
201,598
24,507
132
6,200
1,313
141
2
662
106
142
6
0
0
2014-12-29T02:33:29
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
163
square/okhttp/980/979
square
okhttp
https://github.com/square/okhttp/issues/979
https://github.com/square/okhttp/pull/980
https://github.com/square/okhttp/pull/980
1
fixes
SpdyTransport sets the wrong protocol
SpdyTransport sets the response protocol according to the status line. https://github.com/square/okhttp/blob/master/okhttp/src/main/java/com/squareup/okhttp/internal/http/StatusLine.java#L41 It seems to me that it should be clarified with the transport protocol, here, right? https://github.com/square/okhttp/blob/mas...
0766369844b26f64fc2e8d551ee8b5b00aa3fd87
9a35caf73356aa9a0142f5c5a0c50fde60d6ae02
https://github.com/square/okhttp/compare/0766369844b26f64fc2e8d551ee8b5b00aa3fd87...9a35caf73356aa9a0142f5c5a0c50fde60d6ae02
diff --git a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HeadersTest.java b/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HeadersTest.java index 9947da037..144ec78f4 100644 --- a/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HeadersTest.java +++ b/okhttp-tests/src/test/jav...
['okhttp/src/main/java/com/squareup/okhttp/internal/http/SpdyTransport.java', 'okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/HeadersTest.java']
{'.java': 2}
2
2
0
0
2
724,212
163,340
21,260
113
68
12
2
1
403
27
100
8
2
0
2014-07-02T14:29:56
44,252
Kotlin
{'Kotlin': 3059143, 'Java': 744989, 'Shell': 2995}
Apache License 2.0
685
dbeaver/dbeaver/12953/12943
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12943
https://github.com/dbeaver/dbeaver/pull/12953
https://github.com/dbeaver/dbeaver/pull/12953
1
fix
Database Navigator "Show Connected Only", "Show All" toggle no longer works
#### System information: - Operating system (distribution) and version Windows 10 Enterprise version 1909 - DBeaver version Community 21.1.1.202106210824 - Java version - Additional extensions #### Connection specification: - Database name and version postgres 13.* - Driver name - Do you use tunnels or p...
7176cb483b61f6c3db2668dbb13df49876a4c1f0
cb54f75baa3c1c7c1b1ba18d41e97ca82313fe53
https://github.com/dbeaver/dbeaver/compare/7176cb483b61f6c3db2668dbb13df49876a4c1f0...cb54f75baa3c1c7c1b1ba18d41e97ca82313fe53
diff --git a/plugins/org.jkiss.dbeaver.ui.navigator/src/org/jkiss/dbeaver/ui/navigator/database/DatabaseNavigatorTree.java b/plugins/org.jkiss.dbeaver.ui.navigator/src/org/jkiss/dbeaver/ui/navigator/database/DatabaseNavigatorTree.java index 749c8113a7..a6c2863f9a 100644 --- a/plugins/org.jkiss.dbeaver.ui.navigator/src/...
['plugins/org.jkiss.dbeaver.ui.navigator/src/org/jkiss/dbeaver/ui/navigator/database/TextMatcherExt.java', 'plugins/org.jkiss.dbeaver.ui.navigator/src/org/jkiss/dbeaver/ui/navigator/database/DatabaseNavigatorTree.java']
{'.java': 2}
2
2
0
0
2
21,355,988
4,380,492
582,549
4,173
240
42
8
2
770
107
173
17
0
0
2021-06-23T10:18:30
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
686
dbeaver/dbeaver/12939/12070
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12070
https://github.com/dbeaver/dbeaver/pull/12939
https://github.com/dbeaver/dbeaver/pull/12939
1
fix
[mysql] incorrect handling of stored procedure and function with the same name
- Operating system (distribution) and version: Debian 10 - DBeaver version: 21.0.2 - Database name and version: mysql 8.0.23 - Driver name: MySQL If there are one stored procedure and one function with the same name, you could loose function while editing the procedure. 1) create "test" PROCEDURE ``` DELIM...
9825b1f323d73718b7e685dea501fdbd7387410d
9c46c6f8bd6d6b5a5db4aea769a63663699c912f
https://github.com/dbeaver/dbeaver/compare/9825b1f323d73718b7e685dea501fdbd7387410d...9c46c6f8bd6d6b5a5db4aea769a63663699c912f
diff --git a/plugins/org.jkiss.dbeaver.ext.mysql/src/org/jkiss/dbeaver/ext/mysql/model/MySQLCatalog.java b/plugins/org.jkiss.dbeaver.ext.mysql/src/org/jkiss/dbeaver/ext/mysql/model/MySQLCatalog.java index 3b2caa3e88..c6ad2fa070 100644 --- a/plugins/org.jkiss.dbeaver.ext.mysql/src/org/jkiss/dbeaver/ext/mysql/model/MySQL...
['plugins/org.jkiss.dbeaver.ext.mysql/src/org/jkiss/dbeaver/ext/mysql/model/MySQLCatalog.java', 'plugins/org.jkiss.dbeaver.ext.mysql/src/org/jkiss/dbeaver/ext/mysql/model/MySQLProcedure.java']
{'.java': 2}
2
2
0
0
2
21,350,073
4,379,299
582,409
4,172
1,068
234
21
2
1,144
163
306
59
0
3
2021-06-22T10:40:55
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
688
dbeaver/dbeaver/12766/12765
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12765
https://github.com/dbeaver/dbeaver/pull/12766
https://github.com/dbeaver/dbeaver/pull/12766
1
fix
SqlServer FK between two schemas doesn't show on UI
<!-- Thank you for reporting an issue. *IMPORTANT* - *before* creating a new issue please look around: - DBeaver documentation: https://github.com/dbeaver/dbeaver/wiki and - open issues in Github tracker: https://github.com/dbeaver/dbeaver/issues If you cannot find a similar problem, then create a new i...
63aee4269a199deb69359f4913055615619a7666
0e820df3b91ff92f3c37db90335d30703afde0fd
https://github.com/dbeaver/dbeaver/compare/63aee4269a199deb69359f4913055615619a7666...0e820df3b91ff92f3c37db90335d30703afde0fd
diff --git a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerSchema.java b/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerSchema.java index dac1924bb9..e41e19e4ef 100644 --- a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model...
['plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerSchema.java']
{'.java': 1}
1
1
0
0
1
21,252,088
4,358,670
579,957
4,152
1,158
240
25
1
2,113
299
550
39
3
0
2021-06-07T21:56:46
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
689
dbeaver/dbeaver/12577/12576
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12576
https://github.com/dbeaver/dbeaver/pull/12577
https://github.com/dbeaver/dbeaver/pull/12577
1
fix
Inconsistent behavior of some checkboxes on the PostgreSQL connection configuration page
On the aforementioned page, we have 3 checkboxes: a) Show all databases; b) Show template databases; c) Show databases not available for connection. If the first one is not set, the latter two are not applicable. However, if we check one of them, e.g. the second one, and then we uncheck the first one, checkbox b is sti...
a4afc250c8dc2566f43c7352e4aba539db7b8e23
4ae933837845b1c564859b676464fe7c83b18f9a
https://github.com/dbeaver/dbeaver/compare/a4afc250c8dc2566f43c7352e4aba539db7b8e23...4ae933837845b1c564859b676464fe7c83b18f9a
diff --git a/plugins/org.jkiss.dbeaver.ext.postgresql.ui/src/org/jkiss/dbeaver/ext/postgresql/ui/PostgreConnectionPageAdvanced.java b/plugins/org.jkiss.dbeaver.ext.postgresql.ui/src/org/jkiss/dbeaver/ext/postgresql/ui/PostgreConnectionPageAdvanced.java index 3d86556b1b..4529685533 100644 --- a/plugins/org.jkiss.dbeaver...
['plugins/org.jkiss.dbeaver.ext.postgresql.ui/src/org/jkiss/dbeaver/ext/postgresql/ui/PostgreConnectionPageAdvanced.java', 'plugins/org.jkiss.dbeaver.ext.postgresql.ui/src/org/jkiss/dbeaver/ext/postgresql/ui/PrefPagePostgreSQL.java']
{'.java': 2}
2
2
0
0
2
21,216,761
4,351,606
579,212
4,150
1,256
182
30
2
474
85
108
1
0
0
2021-05-24T16:11:07
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
690
dbeaver/dbeaver/12571/12569
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12569
https://github.com/dbeaver/dbeaver/pull/12571
https://github.com/dbeaver/dbeaver/pull/12571
1
fix
Probable regression, Postgresql sequence DDL uses Cache 0 and this is not a valid value
#### System information: - Ubuntu 18.04 - DBeaver CE 21.0.5 - Additional extensions: Non AFAIK #### Connection specification: - Database name and version: PostgreSQL 9.6 - Driver name: PostgreSQL JDBC Driver - Do you use tunnels or proxies (SSH, SOCKS, etc)? No #### Describe the problem you're observing: ...
67d9e76022d6a32ac090e12f2e25d82ec1726fe3
c170fae1c16ce0ef9287d3419de48541385eb1f1
https://github.com/dbeaver/dbeaver/compare/67d9e76022d6a32ac090e12f2e25d82ec1726fe3...c170fae1c16ce0ef9287d3419de48541385eb1f1
diff --git a/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreSequence.java b/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreSequence.java index dd58352562..57c44bda18 100644 --- a/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkis...
['plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreSequence.java']
{'.java': 1}
1
1
0
0
1
21,193,424
4,346,619
578,586
4,146
1,449
331
30
1
782
120
186
20
1
0
2021-05-24T10:40:55
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
684
dbeaver/dbeaver/13321/11973
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/11973
https://github.com/dbeaver/dbeaver/pull/13321
https://github.com/dbeaver/dbeaver/pull/13321
1
fix
Filters don't work for enum types
PostgreSQL 12, DBeaver EE 21.0.0, macOS 11.2.3. Suppose we have a enum type and a table: ```sql CREATE TYPE "mood" AS ENUM ( 'sad', 'ok', 'happy' ); CREATE TABLE mood_data ( id int4 NOT NULL GENERATED ALWAYS AS IDENTITY, "time" timestamp NULL, "mood" "mood" NULL, CONSTRAIN...
86adfaeec2af0cf11b43114cfb25f316830489fd
01ddb8e9c02c212e4179295aa37381a9944d6621
https://github.com/dbeaver/dbeaver/compare/86adfaeec2af0cf11b43114cfb25f316830489fd...01ddb8e9c02c212e4179295aa37381a9944d6621
diff --git a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/valuefilter/GenericFilterValueEdit.java b/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/valuefilter/GenericFilterValueEdit.java index 9fede8aa6a..3558b73b3c 100644 --- a/plugins/org...
['plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/valuefilter/GenericFilterValueEdit.java']
{'.java': 1}
1
1
0
0
1
21,570,516
4,422,651
587,715
4,199
663
123
15
1
582
91
157
20
0
1
2021-07-26T15:08:20
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
683
dbeaver/dbeaver/14078/10955
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/10955
https://github.com/dbeaver/dbeaver/pull/14078
https://github.com/dbeaver/dbeaver/pull/14078
1
fix
Auto-complete offers objects from the current schema only
#### System information: - Operating system (distribution) and version Win10 - DBeaver version 7.3.3 EA #### Steps to reproduce, if exist: 1. Open SQL Editor for MySQL sakila 2. Type `select * from a` **Actual result**: the list for auto-complete appears with objects from the current schema only **Expected*...
19a37d839f97bb022c19ddc6fff588b230f92786
e5219c457984fa0ef078968c11b7c835a3526142
https://github.com/dbeaver/dbeaver/compare/19a37d839f97bb022c19ddc6fff588b230f92786...e5219c457984fa0ef078968c11b7c835a3526142
diff --git a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerStructureAssistant.java b/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerStructureAssistant.java index 68edb2d22e..9be288abeb 100644 --- a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss...
['plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/model/SQLServerStructureAssistant.java']
{'.java': 1}
1
1
0
0
1
22,041,779
4,518,554
599,248
4,274
172
31
2
1
508
77
114
12
0
0
2021-09-30T16:18:33
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
682
dbeaver/dbeaver/14732/12335
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12335
https://github.com/dbeaver/dbeaver/pull/14732
https://github.com/dbeaver/dbeaver/pull/14732
1
fix
Autocompletion doesn't work in some JOIN cases.
#### System information: - Windows 10 Pro x64 - DBeaver 21.0.4 - No additional extensions #### Connection specification: - PostgreSQL 9.5 - Default PostgreSQL driver - No tunnels or proxies #### Describe the problem you're observing: Column autocompletion doesn't work when table in from clause doesn't hav...
aa2e00bbde05b2fb5e993b05298ad4e4d2fc2ca1
661dc850cef16f395a746f811fab55de36107ee8
https://github.com/dbeaver/dbeaver/compare/aa2e00bbde05b2fb5e993b05298ad4e4d2fc2ca1...661dc850cef16f395a746f811fab55de36107ee8
diff --git a/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/completion/SQLCompletionAnalyzer.java b/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/completion/SQLCompletionAnalyzer.java index 33ecaf1292..15bb14763d 100644 --- a/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/d...
['plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/completion/SQLCompletionAnalyzer.java', 'test/org.jkiss.dbeaver.test.platform/src/org/jkiss/dbeaver/model/sql/analyzer/SQLCompletionAnalyzerTest.java']
{'.java': 2}
2
2
0
0
2
22,438,727
4,600,353
608,724
4,320
598
96
10
1
474
55
128
18
1
0
2021-11-30T08:10:29
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
681
dbeaver/dbeaver/14902/14010
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/14010
https://github.com/dbeaver/dbeaver/pull/14902
https://github.com/dbeaver/dbeaver/pull/14902
1
fix
Support JSONExtractKeysAndValuesRaw feature in Clickhouse
Hello! I use DBeaver 21.1.3.202107181810 with ClickHouse. And I have a problem with JSONExtractKeysAndValuesRaw feature: `SELECT JSONExtractKeysAndValuesRaw('{"id":67}')` Error: ``` org.jkiss.dbeaver.model.exec.DBCException: Can't extract array data from JDBC array at org.jkiss.dbeaver.model.impl.jdbc.data.JD...
a7980337756790411f2354e08b3286290669493c
0bb461d52d3c6228e8b3124f96689ea7c92183cf
https://github.com/dbeaver/dbeaver/compare/a7980337756790411f2354e08b3286290669493c...0bb461d52d3c6228e8b3124f96689ea7c92183cf
diff --git a/plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/impl/jdbc/data/JDBCCollection.java b/plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/impl/jdbc/data/JDBCCollection.java index d2104bf043..b947bbd148 100644 --- a/plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/impl/jdbc/dat...
['plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/impl/jdbc/data/handlers/JDBCArrayValueHandler.java', 'plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/impl/jdbc/data/JDBCCollection.java']
{'.java': 2}
2
2
0
0
2
22,575,202
4,628,235
612,652
4,342
2,721
471
40
2
2,846
105
741
38
0
1
2021-12-14T13:40:15
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
680
dbeaver/dbeaver/14936/14187
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/14187
https://github.com/dbeaver/dbeaver/pull/14936
https://github.com/dbeaver/dbeaver/pull/14936
1
fix
SQL script editor bug when delete
#### System information: - Win 10 - 21.2.2.202110030714 - Additional extensions - #### Connection specification: - Postgresql 13 - org.postgresql.Driver (42.2.20) #### Describe the problem you're observing: 1. E.g. "SELECT id, c1, c2, c3 FROM table;" from SQL script window. 2. select a row and mark it for...
9b10a1e99e8f8c60a65cdcba8dff8db606afed63
ded93ff8197261905aeba24d75e6030bc601bf69
https://github.com/dbeaver/dbeaver/compare/9b10a1e99e8f8c60a65cdcba8dff8db606afed63...ded93ff8197261905aeba24d75e6030bc601bf69
diff --git a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/ResultSetViewer.java b/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/ResultSetViewer.java index bf66efb8b4..115d734f38 100644 --- a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org...
['plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/ResultSetViewer.java']
{'.java': 1}
1
1
0
0
1
22,588,265
4,630,944
613,005
4,345
525
93
19
1
414
65
121
15
0
0
2021-12-17T10:32:23
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
679
dbeaver/dbeaver/15089/13436
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/13436
https://github.com/dbeaver/dbeaver/pull/15089
https://github.com/dbeaver/dbeaver/pull/15089
1
fix
copy sql as source code for delphi and single quote
#### System information: - Windows 10 - DBeaver version 21.1.4.202108020335 - dark theme and office #### Describe the problem you're observing: when i use "copy sql as source code" and i don't select use string builder option the code generated have half cicle ")" in end of code. Delphi require str...
3795b714f903eb25be17750d2f67ecf94186b6df
10f8607acbdccb6aed02df2a6f1f91caf8047994
https://github.com/dbeaver/dbeaver/compare/3795b714f903eb25be17750d2f67ecf94186b6df...10f8607acbdccb6aed02df2a6f1f91caf8047994
diff --git a/plugins/org.jkiss.dbeaver.ui.editors.sql/src/org/jkiss/dbeaver/ui/editors/sql/convert/impl/DelphiSQLConverter.java b/plugins/org.jkiss.dbeaver.ui.editors.sql/src/org/jkiss/dbeaver/ui/editors/sql/convert/impl/DelphiSQLConverter.java index bcbfb0a563..ecfa7173f5 100644 --- a/plugins/org.jkiss.dbeaver.ui.edit...
['plugins/org.jkiss.dbeaver.ui.editors.sql/src/org/jkiss/dbeaver/ui/editors/sql/convert/impl/DelphiSQLConverter.java']
{'.java': 1}
1
1
0
0
1
22,650,259
4,642,705
614,544
4,357
249
56
5
1
875
132
213
24
0
0
2021-12-29T14:40:36
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
678
dbeaver/dbeaver/15183/15158
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/15158
https://github.com/dbeaver/dbeaver/pull/15183
https://github.com/dbeaver/dbeaver/pull/15183
1
fix
Advanced Copy as SQL doesn't copy table name as case sensitive
#### System information: - Operating system (distribution) and version: MacOS Monterey - DBeaver version: 21.3.2 Community #### Connection specification: - Database name and version: Postgres 12 - Driver name: PostgreSQL JDBC Driver - Do you use tunnels or proxies (SSH, SOCKS, etc)? No #### Describe the pro...
acac6596149745c7bc12f417d159563c9d9374a6
a8fc093bf529f51b005e7bc1f53fb620d3fadecf
https://github.com/dbeaver/dbeaver/compare/acac6596149745c7bc12f417d159563c9d9374a6...a8fc093bf529f51b005e7bc1f53fb620d3fadecf
diff --git a/plugins/org.jkiss.dbeaver.data.transfer/src/org/jkiss/dbeaver/tools/transfer/DTUtils.java b/plugins/org.jkiss.dbeaver.data.transfer/src/org/jkiss/dbeaver/tools/transfer/DTUtils.java index 1b0824c937..6c5acdcd86 100644 --- a/plugins/org.jkiss.dbeaver.data.transfer/src/org/jkiss/dbeaver/tools/transfer/DTUtil...
['plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/SQLServerUtils.java', 'plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/exec/DBExecUtils.java', 'plugins/org.jkiss.dbeaver.data.transfer/src/org/jkiss/dbeaver/tools/transfer/DTUtils.java', 'plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbe...
{'.java': 5}
5
5
0
0
5
22,693,159
4,650,361
615,474
4,358
1,964
380
33
5
882
144
197
19
0
0
2022-01-14T20:59:55
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
677
dbeaver/dbeaver/15184/14296
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/14296
https://github.com/dbeaver/dbeaver/pull/15184
https://github.com/dbeaver/dbeaver/pull/15184
1
fix
Oracle Alternative Quoting Mechanism Not Properly Ended
#### System information: - Windows 10 64-bit - DBeaver 21.2.3 - No additional extensions #### Connection specification: - Oracle Database 12c - Oracle JDBC driver 12.2.0.1 - No tunnels or proxies #### Describe the problem you're observing: Alternative quoting mechanism ("Q") for string literals is not w...
7ed7fd29d5cd5793ede0313235bcf417bd72f461
e26f3c4e2fc1314e7f0a7792da974af726125700
https://github.com/dbeaver/dbeaver/compare/7ed7fd29d5cd5793ede0313235bcf417bd72f461...e26f3c4e2fc1314e7f0a7792da974af726125700
diff --git a/plugins/org.jkiss.dbeaver.ext.oracle/src/org/jkiss/dbeaver/ext/oracle/sql/OracleDialectRules.java b/plugins/org.jkiss.dbeaver.ext.oracle/src/org/jkiss/dbeaver/ext/oracle/sql/OracleDialectRules.java index 60e3991bb7..6d27c76a92 100644 --- a/plugins/org.jkiss.dbeaver.ext.oracle/src/org/jkiss/dbeaver/ext/orac...
['plugins/org.jkiss.dbeaver.ext.oracle/src/org/jkiss/dbeaver/ext/oracle/sql/OracleDialectRules.java']
{'.java': 1}
1
1
0
0
1
22,691,287
4,649,999
615,441
4,358
1,777
300
43
1
4,556
392
1,265
87
0
2
2022-01-15T08:16:58
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
676
dbeaver/dbeaver/16854/16705
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/16705
https://github.com/dbeaver/dbeaver/pull/16854
https://github.com/dbeaver/dbeaver/pull/16854
1
closes
[Wayland] Data can't be edited inline after double click
#### System information: - Operating system (distribution) and version Ubuntu 22.04 - DBeaver version 22.1.0 #### Steps to reproduce, if exist: 1. Double-click on any cell in data editor 2. Input something **Expected:** Data in a cell is replaced with the input **Actual:** Nothing happens
cc530b2a5b86e4f0d38b03335d59c59865d0d12e
8fbd8d861a51a5cfb73530ea6fe7ddb7807a6f85
https://github.com/dbeaver/dbeaver/compare/cc530b2a5b86e4f0d38b03335d59c59865d0d12e...8fbd8d861a51a5cfb73530ea6fe7ddb7807a6f85
diff --git a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/lightgrid/LightGrid.java b/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/lightgrid/LightGrid.java index 83f42eac12..8a3070d215 100644 --- a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeav...
['plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/lightgrid/LightGrid.java']
{'.java': 1}
1
1
0
0
1
23,737,785
4,861,616
641,519
4,577
451
92
8
1
303
45
74
11
0
0
2022-06-21T16:42:48
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
675
dbeaver/dbeaver/17319/16368
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/16368
https://github.com/dbeaver/dbeaver/pull/17319
https://github.com/dbeaver/dbeaver/pull/17319
1
fix
Azure Synapse Serverless: cannot read view definition
#### System information: - Windows 10 - DBeaver 22.0.3 #### Connection specification: - Database type: Azure Synapse "serverless" - Driver name: Azure SQL Server - No tunnels or proxies #### Describe the problem you're observing: Trying to get the DDL of a view produces a NullPointerException and the defin...
2e150880eb8c50b521fce85aacfad7c1bf9ea29f
4c27fb0b16d838cf7bd1eeafc2082bc7136f7ba5
https://github.com/dbeaver/dbeaver/compare/2e150880eb8c50b521fce85aacfad7c1bf9ea29f...4c27fb0b16d838cf7bd1eeafc2082bc7136f7ba5
diff --git a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/edit/SQLServerViewManager.java b/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/edit/SQLServerViewManager.java index 0a6428e52c..10b8537007 100644 --- a/plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mss...
['plugins/org.jkiss.dbeaver.ext.mssql/src/org/jkiss/dbeaver/ext/mssql/edit/SQLServerViewManager.java']
{'.java': 1}
1
1
0
0
1
23,944,358
4,902,210
647,191
4,610
251
55
5
1
2,701
201
702
63
0
1
2022-08-09T15:19:26
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
674
dbeaver/dbeaver/18887/18885
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/18885
https://github.com/dbeaver/dbeaver/pull/18887
https://github.com/dbeaver/dbeaver/pull/18887
1
fix
Get prompted every time a variable is referenced in a SQL script
### Description I upgraded DBeaver Community Edition to version 22.3.3.202301211053 a few days ago. After this upgrade the behavior of the variables in DBeaver has changed., I use @set statements to setup values for the variable and was able to use them throughout my SQL scripts. The same scripts now kept prompting fo...
a7f2fd65626498d2ea3f2e1a5ded926434ab5d11
884553d44a3ccfc07c86ee00ec0861564e760f88
https://github.com/dbeaver/dbeaver/compare/a7f2fd65626498d2ea3f2e1a5ded926434ab5d11...884553d44a3ccfc07c86ee00ec0861564e760f88
diff --git a/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/parser/SQLScriptParser.java b/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/parser/SQLScriptParser.java index 1dc5f278e1..b712d7f7cb 100644 --- a/plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/par...
['plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/sql/SQLQueryParameter.java', 'test/org.jkiss.dbeaver.test.platform/src/org/jkiss/dbeaver/model/sql/parser/SQLScriptParserGenericsTest.java', 'plugins/org.jkiss.dbeaver.model.sql/src/org/jkiss/dbeaver/model/sql/parser/SQLScriptParser.java']
{'.java': 3}
3
3
0
0
3
24,740,893
5,058,866
667,368
4,738
1,136
229
13
2
940
149
225
30
0
0
2023-01-26T22:16:03
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
673
dbeaver/dbeaver/20881/20529
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/20529
https://github.com/dbeaver/dbeaver/pull/20881
https://github.com/dbeaver/dbeaver/pull/20881
1
closes
SSH connection defaults to OS login, if server login not saved in settings
### Description It's related to credential popup changes from #18017 - now if SSH is set to use encrypted certificates there will be a popup asking for certificate password, but there's no way to enter server login. If the login is stored in settings - it will work - but in case the login is left empty, the connection...
1ad21c12ab285733bdf877024ebb4d6d071617b1
41addd796eaf82905bfb7d587214542b8990c50d
https://github.com/dbeaver/dbeaver/compare/1ad21c12ab285733bdf877024ebb4d6d071617b1...41addd796eaf82905bfb7d587214542b8990c50d
diff --git a/plugins/org.jkiss.dbeaver.net.ssh.ui/src/org/jkiss/dbeaver/ui/net/ssh/SSHTunnelConfiguratorUI.java b/plugins/org.jkiss.dbeaver.net.ssh.ui/src/org/jkiss/dbeaver/ui/net/ssh/SSHTunnelConfiguratorUI.java index ffd49fbb4f..7f59eee123 100644 --- a/plugins/org.jkiss.dbeaver.net.ssh.ui/src/org/jkiss/dbeaver/ui/net...
['plugins/org.jkiss.dbeaver.registry/src/org/jkiss/dbeaver/registry/DataSourceDescriptor.java', 'plugins/org.jkiss.dbeaver.net.ssh.ui/src/org/jkiss/dbeaver/ui/net/ssh/SSHTunnelConfiguratorUI.java']
{'.java': 2}
2
2
0
0
2
25,916,171
5,294,862
697,820
4,986
2,351
325
33
2
858
148
190
27
0
0
2023-08-14T10:28:38
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
687
dbeaver/dbeaver/12799/12796
dbeaver
dbeaver
https://github.com/dbeaver/dbeaver/issues/12796
https://github.com/dbeaver/dbeaver/pull/12799
https://github.com/dbeaver/dbeaver/pull/12799
1
fix
NPE with find/replace window
#### System information: - Operating system (distribution) and version Windows 10 - DBeaver version 21.1.0 - Additional extensions: n/a #### Connection specification: - Database name and version Oracle 12 - Driver name ojdbc 19 - Do you use tunnels or proxies (SSH, SOCKS, etc)? n/a #### Describe the proble...
ad8a5859e3a946a7cd65f00ddb0e8c6a8e13276d
6ebeeb857461cf8963797e57c101b29eba863a57
https://github.com/dbeaver/dbeaver/compare/ad8a5859e3a946a7cd65f00ddb0e8c6a8e13276d...6ebeeb857461cf8963797e57c101b29eba863a57
diff --git a/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/spreadsheet/SpreadsheetFindReplaceTarget.java b/plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/spreadsheet/SpreadsheetFindReplaceTarget.java index cb8862fc78..7f4a301895 100644 --- a...
['plugins/org.jkiss.dbeaver.ui.editors.data/src/org/jkiss/dbeaver/ui/controls/resultset/spreadsheet/SpreadsheetFindReplaceTarget.java']
{'.java': 1}
1
1
0
0
1
21,264,034
4,361,163
580,241
4,155
118
25
2
1
3,282
194
741
56
0
2
2021-06-09T21:07:02
33,177
Java
{'Java': 26145871, 'JavaScript': 139972, 'C++': 63113, 'ANTLR': 29768, 'CSS': 20674, 'HTML': 12246, 'XSLT': 8047, 'Batchfile': 2891, 'Shell': 202}
Apache License 2.0
783
alibaba/easyexcel/1923/1651
alibaba
easyexcel
https://github.com/alibaba/easyexcel/issues/1651
https://github.com/alibaba/easyexcel/pull/1923
https://github.com/alibaba/easyexcel/pull/1923
1
fix
使用模板填充导出的时候设置自动换行报错
**触发场景描述** 模板填充导出的时候设置自动换行报错 **触发Bug的代码** ```java InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("template/annualPlanning.xlsx"); //内容策略 WriteCellStyle contentWriteCellStyle = new WriteCellStyle(); //设置 自动换行 contentWriteCell...
5a8d3f5bd452a4a6aa4f5156acd3c70c4620450a
fee773f04b3180621530494fad8590babf2040e7
https://github.com/alibaba/easyexcel/compare/5a8d3f5bd452a4a6aa4f5156acd3c70c4620450a...fee773f04b3180621530494fad8590babf2040e7
diff --git a/src/main/java/com/alibaba/excel/write/style/HorizontalCellStyleStrategy.java b/src/main/java/com/alibaba/excel/write/style/HorizontalCellStyleStrategy.java index 295cd556..504570fa 100644 --- a/src/main/java/com/alibaba/excel/write/style/HorizontalCellStyleStrategy.java +++ b/src/main/java/com/alibaba/exce...
['src/main/java/com/alibaba/excel/write/style/HorizontalCellStyleStrategy.java']
{'.java': 1}
1
1
0
0
1
680,873
142,666
21,841
252
187
36
3
1
11,986
284
2,337
138
0
1
2021-05-09T09:11:18
28,637
Java
{'Java': 1416062}
Apache License 2.0
1,657
square/leakcanary/475/417
square
leakcanary
https://github.com/square/leakcanary/issues/417
https://github.com/square/leakcanary/pull/475
https://github.com/square/leakcanary/pull/475
1
fixes
java.lang.NullPointerException alyunOS
In com.sumxiang.noteapp:1.0:2. - FAILURE: java.lang.NullPointerException: java.lang.NullPointerException at com.squareup.leakcanary.HahaHelper.classInstanceValues(HahaHelper.java:143) at com.squareup.leakcanary.HahaHelper.asString(HahaHelper.java:73) at com.squareup.leakcanary.HahaHelper.threadName(HahaHelper.j...
9e74a8529ca94287fe0c3b02b7a6b39d51ecd704
3df74c4eb81f13053dd961d534ec152f467df6c4
https://github.com/square/leakcanary/compare/9e74a8529ca94287fe0c3b02b7a6b39d51ecd704...3df74c4eb81f13053dd961d534ec152f467df6c4
diff --git a/leakcanary-analyzer/src/main/java/com/squareup/leakcanary/HahaHelper.java b/leakcanary-analyzer/src/main/java/com/squareup/leakcanary/HahaHelper.java index fbbf8ba08..fe01cd23b 100644 --- a/leakcanary-analyzer/src/main/java/com/squareup/leakcanary/HahaHelper.java +++ b/leakcanary-analyzer/src/main/java/com...
['leakcanary-analyzer/src/main/java/com/squareup/leakcanary/HahaHelper.java']
{'.java': 1}
1
1
0
0
1
171,568
37,467
4,680
43
237
56
5
1
3,022
158
820
53
1
0
2016-03-30T00:50:51
28,557
Kotlin
{'Kotlin': 1363625, 'Java': 4762, 'Shell': 481, 'AIDL': 203}
Apache License 2.0
1,658
square/leakcanary/458/449
square
leakcanary
https://github.com/square/leakcanary/issues/449
https://github.com/square/leakcanary/pull/458
https://github.com/square/leakcanary/pull/458
1
fixes
NullPointerException in LeakCanaryInternals.isInServiceProcess()
It looks like ActivityManager.getRunningAppProcesses can return null: http://developer.android.com/reference/android/app/ActivityManager.html#getRunningAppProcesses() LeakCanaryInternals.isInServiceProcess() doesn't seem to check for this case. Stack trace excerpt: java.lang.RuntimeException: Unable to create applic...
462561d249bddf5a28439bc588a7cb026a8425bf
efa41ac38b4fa4d48df06d011730a7ffdc8eb0d0
https://github.com/square/leakcanary/compare/462561d249bddf5a28439bc588a7cb026a8425bf...efa41ac38b4fa4d48df06d011730a7ffdc8eb0d0
diff --git a/leakcanary-android/src/main/java/com/squareup/leakcanary/internal/LeakCanaryInternals.java b/leakcanary-android/src/main/java/com/squareup/leakcanary/internal/LeakCanaryInternals.java index b334079f4..973b1b84d 100644 --- a/leakcanary-android/src/main/java/com/squareup/leakcanary/internal/LeakCanaryInterna...
['leakcanary-android/src/main/java/com/squareup/leakcanary/internal/LeakCanaryInternals.java']
{'.java': 1}
1
1
0
0
1
170,559
37,251
4,662
43
540
112
13
1
1,565
81
361
23
1
0
2016-03-20T00:29:29
28,557
Kotlin
{'Kotlin': 1363625, 'Java': 4762, 'Shell': 481, 'AIDL': 203}
Apache License 2.0
1,659
square/leakcanary/405/382
square
leakcanary
https://github.com/square/leakcanary/issues/382
https://github.com/square/leakcanary/pull/405
https://github.com/square/leakcanary/pull/405
1
fixes
Crash opening "Leaks" activity on 1.4-beta1
My test device is running Android M, and I have not had a leak to get the notification to grant storage permissions. When I run the Leaks activity, it crashes with the dump below. The activity is able to open after granting storage permission. ``` D Shutting down VM E FATAL EXCEPTION: main E Process: com.meiste.tem...
37cb2b7f3cb05bb0ac916d1cb308f9ba2c177472
131a8ae309b8f422d54685875ee0568da50ef2dc
https://github.com/square/leakcanary/compare/37cb2b7f3cb05bb0ac916d1cb308f9ba2c177472...131a8ae309b8f422d54685875ee0568da50ef2dc
diff --git a/leakcanary-android/src/main/java/com/squareup/leakcanary/AndroidHeapDumper.java b/leakcanary-android/src/main/java/com/squareup/leakcanary/AndroidHeapDumper.java index 86a232f0a..c46435f35 100644 --- a/leakcanary-android/src/main/java/com/squareup/leakcanary/AndroidHeapDumper.java +++ b/leakcanary-android/...
['leakcanary-android/src/main/java/com/squareup/leakcanary/internal/DisplayLeakActivity.java', 'leakcanary-android/src/main/java/com/squareup/leakcanary/AndroidHeapDumper.java', 'leakcanary-android/src/main/java/com/squareup/leakcanary/DefaultLeakDirectoryProvider.java', 'leakcanary-android/src/main/java/com/squareup/l...
{'.java': 4}
4
4
0
0
4
172,324
37,637
4,696
43
2,121
409
47
4
2,380
146
552
31
0
1
2016-01-23T01:14:19
28,557
Kotlin
{'Kotlin': 1363625, 'Java': 4762, 'Shell': 481, 'AIDL': 203}
Apache License 2.0
1,326
alibaba/nacos/3816/3787
alibaba
nacos
https://github.com/alibaba/nacos/issues/3787
https://github.com/alibaba/nacos/pull/3816
https://github.com/alibaba/nacos/pull/3816
1
fixes
client error: invalid param. For input string: "${nacos.config.maxRetry${nacos.maxRetry:}}"
<!-- Here is for bug reports and feature requests ONLY! If you're looking for help, please check our mail list、WeChat group and the Gitter room. Please try to use English to describe your issue, or at least provide a snippet of English translation. 我们鼓励使用英文,如果不能直接使用,可以使用翻译软件,您仍旧可以保留中文原文。 --> **Describe the ...
a41d209d570ccf5deed6c6c608861b1638ded2f5
af2151e49c359b3fc7c9dd27ac9adbfb71d1ccec
https://github.com/alibaba/nacos/compare/a41d209d570ccf5deed6c6c608861b1638ded2f5...af2151e49c359b3fc7c9dd27ac9adbfb71d1ccec
diff --git a/common/src/main/java/com/alibaba/nacos/common/utils/ConvertUtils.java b/common/src/main/java/com/alibaba/nacos/common/utils/ConvertUtils.java index 628d79bc3..50670e411 100644 --- a/common/src/main/java/com/alibaba/nacos/common/utils/ConvertUtils.java +++ b/common/src/main/java/com/alibaba/nacos/common/uti...
['common/src/main/java/com/alibaba/nacos/common/utils/ConvertUtils.java']
{'.java': 1}
1
1
0
0
1
4,516,790
951,997
127,142
745
588
89
18
1
1,138
111
406
32
0
0
2020-09-14T04:02:46
27,123
Java
{'Java': 10177611, 'SCSS': 80453, 'JavaScript': 7472, 'Shell': 6561, 'TypeScript': 4774, 'Batchfile': 4434, 'EJS': 2645}
Apache License 2.0
987
alibaba/spring-cloud-alibaba/20/19
alibaba
spring-cloud-alibaba
https://github.com/alibaba/spring-cloud-alibaba/issues/19
https://github.com/alibaba/spring-cloud-alibaba/pull/20
https://github.com/alibaba/spring-cloud-alibaba/pull/20
1
fixes
Get wrong instance list at first time
How to reproduce this issue, refer to followings: I have registered 2 instances (ex service name are all 'a') to nacos server Then I stop them After a while, I do step 1 again Then I get 2 instances from interface, for first time, it returns 1 instance or 0 instance. But I invoke again, it is fine...
625e85b0401f5837b48697667ea10e62fe7e3855
1b733af0d515895f1d122bb0f67a6ab9c5d63121
https://github.com/alibaba/spring-cloud-alibaba/compare/625e85b0401f5837b48697667ea10e62fe7e3855...1b733af0d515895f1d122bb0f67a6ab9c5d63121
diff --git a/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java b/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java index f766945f..0d4fdbb8 100644 --- a/spring-cloud-alibaba-nacos-di...
['spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java']
{'.java': 1}
1
1
0
0
1
165,386
34,376
5,506
73
482
104
16
1
366
66
93
6
0
0
2018-09-18T06:10:50
26,133
Java
{'Java': 1218311, 'HTML': 9491, 'Shell': 2729, 'Dockerfile': 1686, 'JavaScript': 860}
Apache License 2.0
986
alibaba/spring-cloud-alibaba/21/19
alibaba
spring-cloud-alibaba
https://github.com/alibaba/spring-cloud-alibaba/issues/19
https://github.com/alibaba/spring-cloud-alibaba/pull/21
https://github.com/alibaba/spring-cloud-alibaba/pull/21
1
fixes
Get wrong instance list at first time
How to reproduce this issue, refer to followings: I have registered 2 instances (ex service name are all 'a') to nacos server Then I stop them After a while, I do step 1 again Then I get 2 instances from interface, for first time, it returns 1 instance or 0 instance. But I invoke again, it is fine...
8e89f6d15a89da422336b9a37d3c65985e6c15bc
541eaee0b8492f96fd488d862de10b65aa608a8c
https://github.com/alibaba/spring-cloud-alibaba/compare/8e89f6d15a89da422336b9a37d3c65985e6c15bc...541eaee0b8492f96fd488d862de10b65aa608a8c
diff --git a/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java b/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java index f766945f..0d4fdbb8 100644 --- a/spring-cloud-alibaba-nacos-di...
['spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosServerList.java']
{'.java': 1}
1
1
0
0
1
172,726
34,556
5,555
73
482
104
16
1
366
66
93
6
0
0
2018-09-18T06:11:51
26,133
Java
{'Java': 1218311, 'HTML': 9491, 'Shell': 2729, 'Dockerfile': 1686, 'JavaScript': 860}
Apache License 2.0
985
alibaba/spring-cloud-alibaba/46/42
alibaba
spring-cloud-alibaba
https://github.com/alibaba/spring-cloud-alibaba/issues/42
https://github.com/alibaba/spring-cloud-alibaba/pull/46
https://github.com/alibaba/spring-cloud-alibaba/pull/46
1
fixes
Setting false on autoRegister of @EnableDiscoveryClient will throw exception and application failed to start
Description: Field nacosRegistration in org.springframework.cloud.alibaba.nacos.NacosDiscoveryClient required a bean of type 'org.springframework.cloud.alibaba.nacos.registry.NacosRegistration' that could not be found. - Bean method 'nacosRegistration' not loaded because @ConditionalOnProperty (spring.cloud.servic...
0f444a40abbe830b108478e9e18f9a74d845f862
27ddaa68a81214832a0351db439eabbef9aed7ec
https://github.com/alibaba/spring-cloud-alibaba/compare/0f444a40abbe830b108478e9e18f9a74d845f862...27ddaa68a81214832a0351db439eabbef9aed7ec
diff --git a/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfiguration.java b/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfiguration.java index 78c7ddcc..6e087422 100644 --- a/spring-clou...
['spring-cloud-alibaba-nacos-discovery/src/test/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosRibbonClientConfigurationTests.java', 'spring-cloud-alibaba-nacos-discovery/src/test/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfigurationTests.java', 'spring-cloud-alibaba-nacos-discovery/src...
{'.java': 10}
10
10
0
0
10
178,400
36,270
5,846
73
5,326
1,079
144
8
449
31
81
4
0
0
2018-10-17T04:38:34
26,133
Java
{'Java': 1218311, 'HTML': 9491, 'Shell': 2729, 'Dockerfile': 1686, 'JavaScript': 860}
Apache License 2.0
984
alibaba/spring-cloud-alibaba/47/42
alibaba
spring-cloud-alibaba
https://github.com/alibaba/spring-cloud-alibaba/issues/42
https://github.com/alibaba/spring-cloud-alibaba/pull/47
https://github.com/alibaba/spring-cloud-alibaba/pull/47
1
fixes
Setting false on autoRegister of @EnableDiscoveryClient will throw exception and application failed to start
Description: Field nacosRegistration in org.springframework.cloud.alibaba.nacos.NacosDiscoveryClient required a bean of type 'org.springframework.cloud.alibaba.nacos.registry.NacosRegistration' that could not be found. - Bean method 'nacosRegistration' not loaded because @ConditionalOnProperty (spring.cloud.servic...
1ce28f00f3255aba56662e2ab75e3e70d679b522
47cab99b2c767e4ce3ff8c0c73a7021ac4fa3f78
https://github.com/alibaba/spring-cloud-alibaba/compare/1ce28f00f3255aba56662e2ab75e3e70d679b522...47cab99b2c767e4ce3ff8c0c73a7021ac4fa3f78
diff --git a/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfiguration.java b/spring-cloud-alibaba-nacos-discovery/src/main/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfiguration.java index b6180144..21a8d303 100644 --- a/spring-clou...
['spring-cloud-alibaba-nacos-discovery/src/test/java/org/springframework/cloud/alibaba/nacos/ribbon/NacosRibbonClientConfigurationTests.java', 'spring-cloud-alibaba-nacos-discovery/src/test/java/org/springframework/cloud/alibaba/nacos/NacosDiscoveryAutoConfigurationTests.java', 'spring-cloud-alibaba-nacos-discovery/src...
{'.java': 10}
10
10
0
0
10
174,914
36,444
5,827
73
4,323
869
107
8
449
31
81
4
0
0
2018-10-17T09:52:20
26,133
Java
{'Java': 1218311, 'HTML': 9491, 'Shell': 2729, 'Dockerfile': 1686, 'JavaScript': 860}
Apache License 2.0
1,205
seata/seata/104/101
seata
seata
https://github.com/seata/seata/issues/101
https://github.com/seata/seata/pull/104
https://github.com/seata/seata/pull/104
1
fixed
Instance will cause RMClientAT.init to execute twice
Once in the main method // 一次是main 方法里面 > String applicationId = "dubbo-demo-account-service"; > String txServiceGroup = "my_test_tx_group"; > RMClientAT.init(applicationId, txServiceGroup); Once is the xml inside GlobalTransactionScanner // 一次是xml 里面GlobalTransactionScanner > if ((AT_MODE &...
33275c72a103116e72936d5b91b4a19cc29924a3
5c411383274ee97f3128615a7013707ab93b6275
https://github.com/seata/seata/compare/33275c72a103116e72936d5b91b4a19cc29924a3...5c411383274ee97f3128615a7013707ab93b6275
diff --git a/examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/AccountServiceImpl.java b/examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/AccountServiceImpl.java index ed22f2a4a..401fa22f3 100644 --- a/examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/AccountServiceImpl.java +++ b/examples/src/main/j...
['examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/AccountServiceImpl.java', 'examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/StorageServiceImpl.java', 'examples/src/main/java/com/alibaba/fescar/tm/dubbo/impl/OrderServiceImpl.java']
{'.java': 3}
3
3
0
0
3
771,671
158,924
23,324
232
174
36
6
3
878
97
234
20
0
0
2019-01-15T13:43:57
23,994
Java
{'Java': 10427110, 'ANTLR': 140225, 'TypeScript': 78693, 'Shell': 39417, 'Lua': 38478, 'SCSS': 34747, 'Kotlin': 7651, 'Python': 4804, 'Batchfile': 3916, 'TSQL': 3476, 'Less': 2488, 'Mustache': 1767, 'Dockerfile': 1411}
Apache License 2.0
564
google/gson/2364/904
google
gson
https://github.com/google/gson/issues/904
https://github.com/google/gson/pull/2364
https://github.com/google/gson/pull/2364
1
fixes
BigDecimal equals problem
Dear developers, it looks like the primitive's equals to did not handle BigDecimal's comparison. The following test will fail: ``` public void testUnequalDecimals() { JsonPrimitive small = new JsonPrimitive(1.0); JsonPrimitive large = new JsonPrimitive(2.0); assertFalse("small = large", small.equal...
051cb43fd9040a432626ef53523f1e7db7ab52c1
3c364b9c945c0e337b51b59fa60fc32355519ed7
https://github.com/google/gson/compare/051cb43fd9040a432626ef53523f1e7db7ab52c1...3c364b9c945c0e337b51b59fa60fc32355519ed7
diff --git a/gson/src/main/java/com/google/gson/JsonPrimitive.java b/gson/src/main/java/com/google/gson/JsonPrimitive.java index 827de959..f143da97 100644 --- a/gson/src/main/java/com/google/gson/JsonPrimitive.java +++ b/gson/src/main/java/com/google/gson/JsonPrimitive.java @@ -290,11 +290,10 @@ public final class Json...
['gson/src/test/java/com/google/gson/JsonPrimitiveTest.java', 'gson/src/main/java/com/google/gson/JsonPrimitive.java']
{'.java': 2}
2
2
0
0
2
703,753
158,568
19,868
100
588
119
9
1
790
84
183
21
0
1
2023-04-01T16:10:29
22,315
Java
{'Java': 1674830}
Apache License 2.0
227
libgdx/libgdx/856/798
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/798
https://github.com/libgdx/libgdx/pull/856
https://github.com/libgdx/libgdx/pull/856
1
fixes
Image are flipped in Particle Editor preview window
To Reproduce: - open particle editor - open any image - image is shown flipped upside down However, when particle is saved then loaded from file image is shown normal. It's also mentioned in this thread: http://www.badlogicgames.com/forum/viewtopic.php?f=11&t=3370&p=16574&hilit=particle+flipped#p16574
956c5671356974cab234cc1f8368f1ef583456a5
cf01bc29946f1b3bd9ab3e4f1c6f99078944da02
https://github.com/libgdx/libgdx/compare/956c5671356974cab234cc1f8368f1ef583456a5...cf01bc29946f1b3bd9ab3e4f1c6f99078944da02
diff --git a/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/EffectPanel.java b/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/EffectPanel.java index 04fa9b42d..9cb496f2f 100644 --- a/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/EffectPanel.java +++ b/extensions/gdx-tool...
['extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/EffectPanel.java']
{'.java': 1}
1
1
0
0
1
10,173,648
2,601,633
291,201
1,754
67
19
2
1
305
37
79
10
1
0
2013-10-22T11:21:46
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
226
libgdx/libgdx/2014/2001
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/2001
https://github.com/libgdx/libgdx/pull/2014
https://github.com/libgdx/libgdx/pull/2014
1
fixes
Config file is not always positioning window
Hey, just found a small bug with window positioning when using config vars. If i put my code like so, then it centers both axis. config.x=-1; config.y=0; or config.x=0; config.y=-1; But if i put it like so, then window is in top left corner. config.x=0; config.y=0;
b96fa2d867f3b600f4177f82782a2dbdf54c3b75
ac402df89ec40f22d673f0ef95e50c29e4a8abfb
https://github.com/libgdx/libgdx/compare/b96fa2d867f3b600f4177f82782a2dbdf54c3b75...ac402df89ec40f22d673f0ef95e50c29e4a8abfb
diff --git a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java b/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java index cf5c18d8b..2c0af30a1 100644 --- a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java +++ b/backends/gdx-...
['backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java']
{'.java': 1}
1
1
0
0
1
10,076,517
2,555,473
282,827
1,542
189
50
4
1
268
46
77
13
0
0
2014-06-22T13:56:44
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
225
libgdx/libgdx/2296/2136
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/2136
https://github.com/libgdx/libgdx/pull/2296
https://github.com/libgdx/libgdx/pull/2296
1
fixes
allowIpod config not working if music started after app is launched
Setting allowIpod = true in IOSApplicationConfiguration seems to have no effect if the libGDX application is launched without any music playing. Steps to reproduce: - start libGDX app with music off (with allowIpod = true) - switch to iTunes/music app - start music - return to libGDX app (music stops, it should keep ...
72af560ce559b6af5f7b7b6caba9b2ef661092ac
c31a342d19654eafa9495d6bf0b570e5466ed900
https://github.com/libgdx/libgdx/compare/72af560ce559b6af5f7b7b6caba9b2ef661092ac...c31a342d19654eafa9495d6bf0b570e5466ed900
diff --git a/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/IOSApplication.java b/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/IOSApplication.java index 96f15ec53..22eb09dda 100644 --- a/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/IOSApplication.java +...
['backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/IOSApplication.java', 'backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/OALSimpleAudio.java']
{'.java': 2}
2
2
0
0
2
10,590,068
2,679,484
297,386
1,632
488
127
27
2
582
82
158
14
1
0
2014-09-03T18:54:04
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
224
libgdx/libgdx/2303/2301
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/2301
https://github.com/libgdx/libgdx/pull/2303
https://github.com/libgdx/libgdx/pull/2303
1
fixes
setDrawContact() missing
setDrawContact() fails when compiling for GWT. [Box2DDebugRenderer.java](https://github.com/libgdx/libgdx/blob/master/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/Box2DDebugRenderer.java) file does not contain such function. Cheers
1900f0593506091c63146579c7bacb84e99a357d
cf054cb5d540bc909a46a1466bf9000d5a61569c
https://github.com/libgdx/libgdx/compare/1900f0593506091c63146579c7bacb84e99a357d...cf054cb5d540bc909a46a1466bf9000d5a61569c
diff --git a/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/Box2DDebugRenderer.java b/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/Box2DDebugRenderer.java index 447b2a027..66ff4a387 100644 --- a...
['extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/Box2DDebugRenderer.java']
{'.java': 1}
1
1
0
0
1
10,591,157
2,679,699
297,429
1,632
166
37
8
1
297
14
90
5
1
0
2014-09-05T17:24:53
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
222
libgdx/libgdx/3767/3766
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/3766
https://github.com/libgdx/libgdx/pull/3767
https://github.com/libgdx/libgdx/pull/3767
1
fix
GWT isButtonPressed is wrong.
After trying right button calls it just check for left button. It will always return true if you check if button is left first. https://github.com/libgdx/libgdx/blob/master/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java#L170
926767148b3801b468daaa8615d89f2fae379026
1443fd0977a4acb5fef69d98595edf166ec57359
https://github.com/libgdx/libgdx/compare/926767148b3801b468daaa8615d89f2fae379026...1443fd0977a4acb5fef69d98595edf166ec57359
diff --git a/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java b/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java index 7d00e78d5..3f098bf16 100644 --- a/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java +++ b/backends/gdx-backends-gwt/src/com/bad...
['backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtInput.java']
{'.java': 1}
1
1
0
0
1
11,723,252
2,972,993
328,357
1,770
106
24
2
1
256
25
67
4
1
0
2016-01-23T19:42:08
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
221
libgdx/libgdx/6382/6380
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/6380
https://github.com/libgdx/libgdx/pull/6382
https://github.com/libgdx/libgdx/pull/6382
1
fixes
TextureArray
#### Issue details After create `TextureArray` I change the parameters (UV-wrapping and texture-filtering) The texture is not working (I see a black box) If I don't change the parameters after creation, everything is fine. I think the texture is incorrectly invalidated then I use the setFilter function (and maybe...
9e9ecd47dcb9c96cc3a9ac8f89434530bd92b759
22943947c5da4fef1870d9bbac37be7f4783c2de
https://github.com/libgdx/libgdx/compare/9e9ecd47dcb9c96cc3a9ac8f89434530bd92b759...22943947c5da4fef1870d9bbac37be7f4783c2de
diff --git a/gdx/src/com/badlogic/gdx/graphics/glutils/FileTextureArrayData.java b/gdx/src/com/badlogic/gdx/graphics/glutils/FileTextureArrayData.java index 0a30b6974..a8160f2fc 100644 --- a/gdx/src/com/badlogic/gdx/graphics/glutils/FileTextureArrayData.java +++ b/gdx/src/com/badlogic/gdx/graphics/glutils/FileTextureAr...
['tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/TextureArrayTest.java', 'gdx/src/com/badlogic/gdx/graphics/glutils/FileTextureArrayData.java']
{'.java': 2}
2
2
0
0
2
12,882,101
3,279,985
353,511
1,923
88
30
3
1
839
113
189
28
0
0
2021-01-29T13:11:20
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
219
libgdx/libgdx/2449/2087
libgdx
libgdx
https://github.com/libgdx/libgdx/issues/2087
https://github.com/libgdx/libgdx/pull/2449
https://github.com/libgdx/libgdx/issues/2087#issuecomment-58633764
1
fixes
Lwjgl backend doesn't support OpenGL ES 3.2+
Creating a LwjglApplication with useGL30 set to true still doesn't create an OpenGL ES 3 context. Additionally, Gdx.gl30 is null. The issue seems to be [here](https://github.com/libgdx/libgdx/blob/master/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java#L166). context should be passed i...
ce386db862a0a9639f513c40163b819c0729ed79
d4d3941299d4c9e969169034dce025f9c4826056
https://github.com/libgdx/libgdx/compare/ce386db862a0a9639f513c40163b819c0729ed79...d4d3941299d4c9e969169034dce025f9c4826056
diff --git a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGL20.java b/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGL20.java index 290afba2e..57cecebb6 100644 --- a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGL20.java +++ b/backends/gdx-backend-lwjg...
['backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGL20.java', 'backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglGraphics.java']
{'.java': 2}
2
2
0
0
2
10,748,723
2,720,129
301,959
1,652
152
41
3
2
589
52
150
6
2
0
2014-10-10T09:25:09
21,772
Java
{'Java': 15083440, 'C++': 10753718, 'C': 1692234, 'SWIG': 162005, 'GLSL': 124461, 'CSS': 58715, 'Assembly': 53505, 'CMake': 31706, 'Ragel': 30666, 'OpenEdge ABL': 17727, 'Lua': 1682, 'HTML': 1193, 'Shell': 1102}
Apache License 2.0
523
google/exoplayer/9525/9524
google
exoplayer
https://github.com/google/ExoPlayer/issues/9524
https://github.com/google/ExoPlayer/pull/9525
https://github.com/google/ExoPlayer/pull/9525
1
fixes
PlayerControlView time position not being initialized to 0:00 in ExoPlayer r2.15.1
Reproduction: 1. Change the demo app to use PlayerControlView instead of StyledPlayerControlView. 2. Open a video. See that the timestamp is blank instead of starting at 0:00. This appears to be a regression in 86f8c4e44e5467cb9d3b79dcf0593903ddd58422 / dd33afb33508018a2734ebbc65eb34b179259983 from fixing #9111 ...
b192465bba5c0705ff8db195ad043e0846b6c9cf
e883c04006694392aae3f8c23223158cd653306d
https://github.com/google/exoplayer/compare/b192465bba5c0705ff8db195ad043e0846b6c9cf...e883c04006694392aae3f8c23223158cd653306d
diff --git a/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java b/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java index 7035372b32..24dbde6a72 100644 --- a/library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java +++ b/library/ui/src...
['library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java']
{'.java': 1}
1
1
0
0
1
9,859,066
2,207,633
262,532
958
185
38
4
1
322
40
99
7
0
0
2021-10-03T23:11:06
20,925
Java
{'Java': 18182600, 'C++': 112860, 'GLSL': 48506, 'Shell': 25961, 'Makefile': 11496, 'CMake': 3728}
Apache License 2.0
524
google/exoplayer/4441/4419
google
exoplayer
https://github.com/google/ExoPlayer/issues/4419
https://github.com/google/ExoPlayer/pull/4441
https://github.com/google/ExoPlayer/pull/4441
1
solves
ANR on Fire TV when changing surface holder
### Issue description ANR occurs when setting video surface holder to null after it got destroyed. ### Reproduction steps Trigger replacing surface. ### Link to test content Any video. ### Version of ExoPlayer being used 2.7.0, 2.7.2 and 2.8.1 ### Device(s) and version(s) of Android being used Fire TV ...
a1f89bec0dcc30bdc2f3a8889371447f701ae9b7
99d3e8f1d39e1f605ec34345a4673dc817e95f70
https://github.com/google/exoplayer/compare/a1f89bec0dcc30bdc2f3a8889371447f701ae9b7...99d3e8f1d39e1f605ec34345a4673dc817e95f70
diff --git a/library/core/src/main/java/com/google/android/exoplayer2/video/MediaCodecVideoRenderer.java b/library/core/src/main/java/com/google/android/exoplayer2/video/MediaCodecVideoRenderer.java index 990025b5af..5e8a98ea68 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/video/MediaCodecVideoR...
['library/core/src/main/java/com/google/android/exoplayer2/video/MediaCodecVideoRenderer.java']
{'.java': 1}
1
1
0
0
1
5,348,254
1,230,405
145,879
599
341
82
9
1
492
72
139
23
0
0
2018-06-27T10:30:56
20,925
Java
{'Java': 18182600, 'C++': 112860, 'GLSL': 48506, 'Shell': 25961, 'Makefile': 11496, 'CMake': 3728}
Apache License 2.0
3,480
apache/shardingsphere/2529/2528
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2528
https://github.com/apache/shardingsphere/pull/2529
https://github.com/apache/shardingsphere/pull/2529
1
fixes
tinyint column don't return a 8-bit integer value but a boolean value
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
7a56c4ba2a4a63a3b1cf2846de6fc3c70cd5ccf6
ba8c9e48052cd04c6dbeaeefb1ffba3579f772c0
https://github.com/apache/shardingsphere/compare/7a56c4ba2a4a63a3b1cf2846de6fc3c70cd5ccf6...ba8c9e48052cd04c6dbeaeefb1ffba3579f772c0
diff --git a/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/StreamQueryResult.java b/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/StreamQueryResult.java index a7dcbb9b07c..ee8d6833be1 100644 --- a...
['sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/executor/PreparedStatementExecutorTest.java', 'sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/executor/StatementExecutorTest.java', 'sharding-core/sharding-core-execute/src/main/java/org/apache...
{'.java': 3}
3
3
0
0
3
2,927,062
588,103
75,053
1,031
4,851
942
94
1
1,256
174
284
28
2
0
2019-06-10T12:19:47
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,484
apache/shardingsphere/2352/2343
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2343
https://github.com/apache/shardingsphere/pull/2352
https://github.com/apache/shardingsphere/pull/2352
1
fixes
Sharding-proxy Query result :extraneous data in "D" message ,reason: have chinese
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
6c49107d434c31e5f95365bb1bfcbcd52f7f4585
a4adf6df82926c267a74fb287249106a9582715d
https://github.com/apache/shardingsphere/compare/6c49107d434c31e5f95365bb1bfcbcd52f7f4585...a4adf6df82926c267a74fb287249106a9582715d
diff --git a/sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-postgresql/src/main/java/org/apache/shardingsphere/shardingproxy/transport/postgresql/packet/command/query/text/PostgreSQLDataRowPacket.java b/sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-postgresql/src/main/java/org/apach...
['sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-postgresql/src/main/java/org/apache/shardingsphere/shardingproxy/transport/postgresql/packet/command/query/text/PostgreSQLDataRowPacket.java']
{'.java': 1}
1
1
0
0
1
3,278,405
662,802
82,927
1,137
130
18
2
1
1,243
169
277
28
2
0
2019-05-08T09:25:56
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,481
apache/shardingsphere/2467/2460
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2460
https://github.com/apache/shardingsphere/pull/2467
https://github.com/apache/shardingsphere/pull/2467
1
fixes
The problem that the value of the bit type cannot be returned correctly
I used shardingproxy to do the sharding, but there is a field of bit type. The value stored in this field is 1 regardless of the number of questions. Please ask how to solve this problem. Thank you.
529a1e80231d4ac2efc49d4884644cb716570f4c
2e0a7ebe1fd49b596242f62e68c877cb766a5092
https://github.com/apache/shardingsphere/compare/529a1e80231d4ac2efc49d4884644cb716570f4c...2e0a7ebe1fd49b596242f62e68c877cb766a5092
diff --git a/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/QueryResultUtil.java b/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/QueryResultUtil.java index e41c8c2a35b..82bbd806543 100644 --- a/sha...
['sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/QueryResultUtil.java', 'sharding-core/sharding-core-execute/src/test/java/org/apache/shardingsphere/core/execute/sql/execute/result/QueryResultUtilTest.java']
{'.java': 2}
2
2
0
0
2
2,864,781
575,718
73,500
997
56
7
1
1
198
38
47
1
0
0
2019-05-29T09:51:26
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,482
apache/shardingsphere/2424/2417
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2417
https://github.com/apache/shardingsphere/pull/2424
https://github.com/apache/shardingsphere/pull/2424
1
fixes
Get error index info when use hibernate.hbm2ddl.auto=update
## Version * Spring Boot 2.1.5.RELEASE * ShardingSphere 4.0.0-RC1 * MySQL 5.7 ## Question I have set the option "spring.jpa.properties.hibernate.hbm2ddl.auto=update" config application.yml: ``` datasource: names: ds0, ds1, ds2 # **** sharding: default-data-source-name: ds0 # ... tables: ...
e298fc8b022e24f5465ee66fbf25c505267a417e
30f895655a2cef66d6506de45daebfcbfa869e62
https://github.com/apache/shardingsphere/compare/e298fc8b022e24f5465ee66fbf25c505267a417e...30f895655a2cef66d6506de45daebfcbfa869e62
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData....
['sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData.java', 'sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/resultset/DatabaseMetaDataResultSetTest.java', 'sharding-jdbc/sh...
{'.java': 4}
4
4
0
0
4
2,829,855
568,294
72,587
983
2,027
379
25
2
1,849
153
462
53
0
3
2019-05-22T06:27:31
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,483
apache/shardingsphere/2374/2398
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2398
https://github.com/apache/shardingsphere/pull/2374
https://github.com/apache/shardingsphere/pull/2374
1
fix
Wrong result set for `select between and` when using encrypt data source
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
b0be6b29f0cdbd022270cf44b1e48fbbc52ac202
e7623cdfcd1c941acf3e2f9912c60ccf0221d8fd
https://github.com/apache/shardingsphere/compare/b0be6b29f0cdbd022270cf44b1e48fbbc52ac202...e7623cdfcd1c941acf3e2f9912c60ccf0221d8fd
diff --git a/sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/SQLJudgeEngine.java b/sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/SQLJudgeEngine.java index 8f945a0f9dc..c0ec2bf6ac1 100644 ---...
['sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/sql/token/impl/SchemaToken.java', 'sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/placeholder/WhereEncryptColumnPlaceholderTest.java', 'sharding-core/sharding-core-...
{'.java': 14}
14
14
0
0
14
2,902,562
584,510
74,812
1,006
6,817
1,308
86
10
1,425
206
304
29
2
0
2019-05-13T08:07:23
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,485
apache/shardingsphere/2330/2329
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2329
https://github.com/apache/shardingsphere/pull/2330
https://github.com/apache/shardingsphere/pull/2330
1
fixes
The SQL of `insert set` can not run well when sharding
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
29120e83d4b03580495d5a9965174775c6183455
34caf8df7aaee032d6a7125084e0f75cf28c758c
https://github.com/apache/shardingsphere/compare/29120e83d4b03580495d5a9965174775c6183455...34caf8df7aaee032d6a7125084e0f75cf28c758c
diff --git a/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java b/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java index 468b450962a..221a2cbf223 100644 --- a/sharding-core/sharding-core-rewrite/src/main/java/o...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java']
{'.java': 1}
1
1
0
0
1
3,275,216
662,046
82,821
1,133
174
32
2
1
1,379
182
316
30
2
0
2019-05-06T08:32:37
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,486
apache/shardingsphere/2323/2312
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2312
https://github.com/apache/shardingsphere/pull/2323
https://github.com/apache/shardingsphere/pull/2323
1
fixes
If there is quoteCharacter for index name, sql can not be executed
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
e5f9dea2c3e002c1b7d0f24cc1cbccea652c9eb6
3c0802d8535a4fb216e762455da7234108c1e64f
https://github.com/apache/shardingsphere/compare/e5f9dea2c3e002c1b7d0f24cc1cbccea652c9eb6...3c0802d8535a4fb216e762455da7234108c1e64f
diff --git a/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java b/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java index c7fd883b2cd..468b450962a 100644 --- a/sharding-core/sharding-core-rewrite/src/main/java/o...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/placeholder/IndexPlaceholder.java', 'sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java']
{'.java': 2}
2
2
0
0
2
3,276,235
662,267
82,843
1,133
1,633
281
29
2
2,491
289
590
51
2
3
2019-05-05T12:52:55
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,487
apache/shardingsphere/2322/2252
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2252
https://github.com/apache/shardingsphere/pull/2322
https://github.com/apache/shardingsphere/pull/2322
1
fixes
insert with generated keys,when the last column value is null,cause NullPointerException
sharding-jdbc <version>4.0.0-RC1</version> <sharding:key-generator id="xxxxxx" type="SNOWFLAKE" column="id" /> useGeneratedKeys,when insert sql the last column value is null,cause NullPointerException when update the last column,success! exception: Caused by: java.lang.NullPointerException at org.apache.shar...
3d5d62647549560806c01b466c4185160339ddf2
426930a63eed3a0892f397ce822e5f2dc85725c6
https://github.com/apache/shardingsphere/compare/3d5d62647549560806c01b466c4185160339ddf2...426930a63eed3a0892f397ce822e5f2dc85725c6
diff --git a/sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/engine/encrypt/EncryptInsertOptimizeEngine.java b/sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/engine/encrypt/EncryptInsertOptimizeEngine.java index 886f9cc7424..f9f70c6e...
['sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/SQLRewriteEngineTest.java', 'sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/engine/encrypt/EncryptInsertOptimizeEngine.java', 'sharding-core/sharding-core-optimize/src/main/java/org/apa...
{'.java': 10}
10
10
0
0
10
3,280,187
663,169
82,955
1,136
6,552
1,232
85
8
3,725
108
779
46
0
0
2019-05-05T11:05:18
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,488
apache/shardingsphere/2320/2312
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2312
https://github.com/apache/shardingsphere/pull/2320
https://github.com/apache/shardingsphere/pull/2320
1
fixes
If there is quoteCharacter for index name, sql can not be executed
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
1add261f7f9cf5492337096982bb63b824bcd40c
11da8fb2496a5bc2e40c6c88454b65e66b9da124
https://github.com/apache/shardingsphere/compare/1add261f7f9cf5492337096982bb63b824bcd40c...11da8fb2496a5bc2e40c6c88454b65e66b9da124
diff --git a/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java b/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java index faea1845972..8b2717964eb 100644 --- a/sharding-core/sharding-core-rewrite/src/main/java/o...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/SQLBuilder.java']
{'.java': 1}
1
1
0
0
1
3,258,051
658,607
82,369
1,123
503
78
11
1
2,491
289
590
51
2
3
2019-05-05T04:10:00
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,478
apache/shardingsphere/2539/2527
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2527
https://github.com/apache/shardingsphere/pull/2539
https://github.com/apache/shardingsphere/pull/2539
1
fixes
CachedDatabaseMetaData.getTables throw NullPointerException when use MasterSlaveDataSource
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
6981f690ae2864fa4927fdb5fc74f795a981191e
d367e25213a530a87c9242225dcf64310f70691d
https://github.com/apache/shardingsphere/compare/6981f690ae2864fa4927fdb5fc74f795a981191e...d367e25213a530a87c9242225dcf64310f70691d
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData....
['sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/ResultSetReturnedDatabaseMetaData.java', 'sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/datasource/metadata/CachedDatabaseMetaDataTest.java', 'sharding-...
{'.java': 3}
3
3
0
0
3
2,928,004
588,266
75,103
1,033
692
134
8
2
1,203
153
269
29
2
0
2019-06-12T02:03:30
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,468
apache/shardingsphere/2886/2883
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2883
https://github.com/apache/shardingsphere/pull/2886
https://github.com/apache/shardingsphere/pull/2886
1
fixes
Encrypt replace the table name with the column name.
## Bug Report ### Which version of ShardingSphere did you use? 4.0.0-RC2-SNAPSHOT ### Which project did you use? Sharding-JDBC or Sharding-Proxy? Sharding-JDBC ### Expected behavior encrypt successfully. ### Actual behavior Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: U...
a67c09f9d4b15e8ac18eab9a0a1026eb0b9ec2ae
215186d381c9c1ead9fb32314d95a275fd644349
https://github.com/apache/shardingsphere/compare/a67c09f9d4b15e8ac18eab9a0a1026eb0b9ec2ae...215186d381c9c1ead9fb32314d95a275fd644349
diff --git a/sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/core/extractor/impl/common/column/ColumnExtractor.java b/sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/core/extractor/impl/common...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/generator/SelectEncryptItemTokenGenerator.java', 'sharding-core/sharding-core-parse/sharding-core-parse-common/src/main/java/org/apache/shardingsphere/core/parse/core/extractor/impl/common/column/ColumnExtractor.java', 'sha...
{'.java': 3}
3
3
0
0
3
3,064,393
613,668
78,000
1,063
2,777
515
35
3
1,339
124
336
36
1
0
2019-08-16T12:19:46
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,477
apache/shardingsphere/2540/2538
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2538
https://github.com/apache/shardingsphere/pull/2540
https://github.com/apache/shardingsphere/pull/2540
1
fixes
null and pagination question
## Question I am using the sharding-proxy, the PreparedStatement setString, I set the field to be null object not the 'null' string, the sharding-proxy will treat it as a string to be inserted into table,which is not my expected result is also not the same as in jdbc. for the pagination, it is not support the sql l...
a52c6575d18103f1b2dbce21c8939b43fa6c6fbf
b3842463d6809c303bf81f53893e3d89131830f8
https://github.com/apache/shardingsphere/compare/a52c6575d18103f1b2dbce21c8939b43fa6c6fbf...b3842463d6809c303bf81f53893e3d89131830f8
diff --git a/sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-mysql/src/main/java/org/apache/shardingsphere/shardingproxy/transport/mysql/packet/command/query/binary/execute/protocol/MySQLBinaryProtocolValueFactory.java b/sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-mysql/src/main/ja...
['sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-mysql/src/test/java/org/apache/shardingsphere/shardingproxy/transport/mysql/packet/command/query/binary/execute/protocol/MySQLMySQLBinaryProtocolValueFactoryTest.java', 'sharding-proxy/sharding-proxy-transport/sharding-proxy-transport-mysql/src/main/jav...
{'.java': 2}
2
2
0
0
2
2,928,154
588,298
75,107
1,033
183
37
5
1
441
78
105
5
0
0
2019-06-12T04:17:58
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,465
apache/shardingsphere/2983/2972
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2972
https://github.com/apache/shardingsphere/pull/2983
https://github.com/apache/shardingsphere/pull/2983
1
fixes
when using sharding master-slave-rules,the encryptRule is not worked for result,but is wored for param
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
6606964dce1e8a7bda45e5d41116bb58d0f34694
6b5b40162dd87cd4fa66154e92408979144937ca
https://github.com/apache/shardingsphere/compare/6606964dce1e8a7bda45e5d41116bb58d0f34694...6b5b40162dd87cd4fa66154e92408979144937ca
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java index 734190d36b4..eee2244e640 ...
['sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingStatement.java', 'sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java']
{'.java': 2}
2
2
0
0
2
3,078,860
616,545
78,313
1,066
608
106
8
2
2,072
226
507
70
2
0
2019-09-05T10:44:33
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,455
apache/shardingsphere/7468/6643
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/6643
https://github.com/apache/shardingsphere/pull/7468
https://github.com/apache/shardingsphere/pull/7468
1
fix
Rewrite error of derived alias
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/overview)....
0b5ee351bad3ce2dbe52003b55d4f9fa52fcaf36
4fb7ea269d59e25a1719ad74e95030bda7ea0744
https://github.com/apache/shardingsphere/compare/0b5ee351bad3ce2dbe52003b55d4f9fa52fcaf36...4fb7ea269d59e25a1719ad74e95030bda7ea0744
diff --git a/shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/segment/select/projection/Projection.java b/shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/segment/select/projection/Pro...
['shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/segment/select/projection/engine/ProjectionsContextEngine.java', 'shardingsphere-sql-parser/shardingsphere-sql-parser-binder/src/main/java/org/apache/shardingsphere/sql/parser/binder/segment/select/pro...
{'.java': 2}
2
2
0
0
2
5,141,202
1,022,790
123,975
1,854
499
91
6
2
2,043
280
524
56
3
2
2020-09-15T15:41:30
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,456
apache/shardingsphere/7449/7200
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/7200
https://github.com/apache/shardingsphere/pull/7449
https://github.com/apache/shardingsphere/pull/7449
1
fixes
LockSegment absent of PostgreSQL parser
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/overview)....
140e487b8949995a61ec94db68d753cc8b425721
f892a63f058068daef8aed9a3838ec34f6985c2b
https://github.com/apache/shardingsphere/compare/140e487b8949995a61ec94db68d753cc8b425721...f892a63f058068daef8aed9a3838ec34f6985c2b
diff --git a/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/visitor/impl/PostgreSQLDMLVisitor.java b/shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/j...
['shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-postgresql/src/main/java/org/apache/shardingsphere/sql/parser/postgresql/visitor/impl/PostgreSQLDMLVisitor.java']
{'.java': 1}
1
1
0
0
1
5,115,597
1,017,826
123,306
1,829
333
69
7
1
1,758
202
366
54
2
1
2020-09-15T02:39:36
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,462
apache/shardingsphere/6349/6324
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/6324
https://github.com/apache/shardingsphere/pull/6349
https://github.com/apache/shardingsphere/pull/6349
1
fixes
ShardingSphere-Proxy will be blocked when query big blob data
### Which version of ShardingSphere did you use? Shardingsphere-ui-4.1.1 Previous version 4.0.0-RC1 also has the same issue. ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-Proxy ### Expected behavior ShardingSphere-Proxy can receive connection and process sql statements...
803611ca626394f1c85e672452c082ecb283da90
98284eade870fa9225b9d7cb6706113f94e282ab
https://github.com/apache/shardingsphere/compare/803611ca626394f1c85e672452c082ecb283da90...98284eade870fa9225b9d7cb6706113f94e282ab
diff --git a/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/communication/jdbc/connection/ResourceSynchronizer.java b/shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/communication/jdbc/connection/ResourceSyn...
['shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/communication/jdbc/connection/ResourceSynchronizer.java', 'shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-mysql/src/main/java/org/apache/shardingsphere/proxy/frontend/mysql/command...
{'.java': 3}
3
3
0
0
3
4,883,872
970,843
118,877
1,699
778
145
24
3
4,998
484
1,618
55
0
3
2020-07-14T13:36:37
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,463
apache/shardingsphere/3052/3013
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/3013
https://github.com/apache/shardingsphere/pull/3052
https://github.com/apache/shardingsphere/pull/3052
1
fixes
4.0.0-RC2 sharding-proxy use zookeeper can not start
i can use zookeeper in sharding-proxy, but can not start. server.xml: orchestration: name: orchestration_ds overwrite: false registry: type: zookeeper serverLists: localhost:2181 namespace: orchestration error: [INFO ] 09:54:56.858 [main] o.a.c.f.imps.CuratorFrameworkImpl - Starting [INFO...
adc33c4c01d4cfbacfdcadf7bc8c39443614ecd3
66599fcb1d7fecfdffe9b4c7a2a3ffe2eb7a2223
https://github.com/apache/shardingsphere/compare/adc33c4c01d4cfbacfdcadf7bc8c39443614ecd3...66599fcb1d7fecfdffe9b4c7a2a3ffe2eb7a2223
diff --git a/sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java b/sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java index 5e9b767ddfd..9b60f4813c6 100644 --- a/sharding-proxy/sharding-proxy-bootstrap/src...
['sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java']
{'.java': 1}
1
1
0
0
1
3,214,984
643,606
82,036
1,118
203
42
2
1
10,815
295
3,588
50
0
0
2019-09-17T10:12:16
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,464
apache/shardingsphere/2999/2981
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2981
https://github.com/apache/shardingsphere/pull/2999
https://github.com/apache/shardingsphere/pull/2999
1
fixes
It doesn't work when set properties for ShardingPreparedStatement.
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
0c0e2713a8aa272881713aebb9a2229432913040
ff587fe073514654dda8bbedc134984a1c50b611
https://github.com/apache/shardingsphere/compare/0c0e2713a8aa272881713aebb9a2229432913040...ff587fe073514654dda8bbedc134984a1c50b611
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java index 734190d36b4..7f3707ca987 ...
['sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatementTest.java', 'sharding-jdbc/sharding-jdbc-core/src/main/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/statement/ShardingPreparedStatement.java']
{'.java': 2}
2
2
0
0
2
3,082,673
617,403
78,464
1,071
229
38
7
1
3,027
285
566
65
2
1
2019-09-07T05:35:45
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,503
apache/shardingsphere/1727/1715
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1715
https://github.com/apache/shardingsphere/pull/1727
https://github.com/apache/shardingsphere/pull/1727
1
fixes
error when Logic table have the same name as Actual table .
### update it looks like a driver compatibility problem with `mysql-connector-java` of 6.0.6 or above the issue title should updated in some days --- i just use database sharding not table sharding, but when Logic table have the same name as Actual table, some error occurs ``` Caused by: java.sql.SQLException: C...
c19f40f8c15571a6c2a7784985e34cc9f37f211e
ba3b92287556ae99825f67e04ff75223d429beba
https://github.com/apache/shardingsphere/compare/c19f40f8c15571a6c2a7784985e34cc9f37f211e...ba3b92287556ae99825f67e04ff75223d429beba
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/metadata/table/executor/TableMetaDataLoader.java b/sharding-core/src/main/java/io/shardingsphere/core/metadata/table/executor/TableMetaDataLoader.java index db34b6f2696..19cda450549 100644 --- a/sharding-core/src/main/java/io/shardingsphere/core/metadata/t...
['sharding-core/src/main/java/io/shardingsphere/core/metadata/table/executor/TableMetaDataLoader.java']
{'.java': 1}
1
1
0
0
1
2,399,845
499,639
66,532
871
224
46
2
1
869
123
227
27
0
2
2019-01-09T11:06:16
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,476
apache/shardingsphere/2541/2142
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2142
https://github.com/apache/shardingsphere/pull/2541
https://github.com/apache/shardingsphere/pull/2541
1
fixes
OpenTracingSQLExecutionHook.toStringList NullPointerException
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
a52c6575d18103f1b2dbce21c8939b43fa6c6fbf
c2f4425ee749a288078c5c3045fc984e691ae6c8
https://github.com/apache/shardingsphere/compare/a52c6575d18103f1b2dbce21c8939b43fa6c6fbf...c2f4425ee749a288078c5c3045fc984e691ae6c8
diff --git a/sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java b/sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java index 0e2589543c7..edd0ad6018a 100644 --- a/sharding-opentracing/src/main/java/org/...
['sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java']
{'.java': 1}
1
1
0
0
1
2,928,154
588,298
75,107
1,033
170
38
2
1
1,272
165
275
28
2
0
2019-06-12T04:40:27
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,466
apache/shardingsphere/2937/2919
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2919
https://github.com/apache/shardingsphere/pull/2937
https://github.com/apache/shardingsphere/pull/2937
1
fixes
When the application restarts,LEAF_SEGMENT Distributed Primary Key Generation Not working properly in RC2
## Bug Report ### Which version of ShardingSphere did you use? sharding-orchestration:4.0.0-RC2 ### Which project did you use? Sharding-JDBC or Sharding-Proxy? Sharding-JDBC ### Expected behavior When the program restarts, the primary key of LEAF_SEGMENT distribution can be generated normally. ### Actual beha...
f7c5a50a2f3b79d9569b4a418475f74609769c0f
9fc2e9160b65d44a1d0c162a8d95ba9721117e07
https://github.com/apache/shardingsphere/compare/f7c5a50a2f3b79d9569b4a418475f74609769c0f...9fc2e9160b65d44a1d0c162a8d95ba9721117e07
diff --git a/sharding-orchestration/sharding-orchestration-core/src/main/java/org/apache/shardingsphere/orchestration/internal/keygen/LeafSegmentKeyGenerator.java b/sharding-orchestration/sharding-orchestration-core/src/main/java/org/apache/shardingsphere/orchestration/internal/keygen/LeafSegmentKeyGenerator.java index...
['sharding-orchestration/sharding-orchestration-zookeeper-curator-integration-test/src/test/java/org/apache/shardingsphere/orchestration/zookeeper/curator/integration/test/LeafSegmentKeyGeneratorIT.java', 'sharding-orchestration/sharding-orchestration-core/src/main/java/org/apache/shardingsphere/orchestration/internal/...
{'.java': 3}
3
3
0
0
3
3,091,686
619,085
78,612
1,069
3,867
819
144
1
1,573
100
369
23
2
0
2019-08-28T03:58:35
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,467
apache/shardingsphere/2918/2917
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2917
https://github.com/apache/shardingsphere/pull/2918
https://github.com/apache/shardingsphere/pull/2918
1
fixes
NullPointerException will occur when bindingtable have no tablerule but have a default datasource
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
f666b5782b779ca1bfb993494755c6611e895ae8
9a1631487270a3c95a1daea0263e8b051b96f419
https://github.com/apache/shardingsphere/compare/f666b5782b779ca1bfb993494755c6611e895ae8...9a1631487270a3c95a1daea0263e8b051b96f419
diff --git a/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingRule.java b/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingRule.java index 149c18a9763..a8a9d46b2bb 100644 --- a/sharding-core/sharding-core-common/src/main/java/org/ap...
['sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingRule.java']
{'.java': 1}
1
1
0
0
1
3,090,436
618,873
78,577
1,069
195
36
2
1
1,684
176
338
36
2
0
2019-08-23T11:55:54
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,490
apache/shardingsphere/2240/2142
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2142
https://github.com/apache/shardingsphere/pull/2240
https://github.com/apache/shardingsphere/pull/2240
1
fixes
OpenTracingSQLExecutionHook.toStringList NullPointerException
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
dc02d36496e86f000d0def17d1bc2470a33788dc
dfa064cd1ee866ac99ad1f0fd9869456ea242c3f
https://github.com/apache/shardingsphere/compare/dc02d36496e86f000d0def17d1bc2470a33788dc...dfa064cd1ee866ac99ad1f0fd9869456ea242c3f
diff --git a/sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java b/sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java index 97f835d130f..62e6c4c52b4 100644 --- a/sharding-opentracing/src/main/java/org/...
['sharding-opentracing/src/main/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHook.java', 'sharding-opentracing/src/test/java/org/apache/shardingsphere/opentracing/hook/OpenTracingSQLExecutionHookTest.java']
{'.java': 2}
2
2
0
0
2
3,239,881
654,669
81,986
1,106
282
57
5
1
1,272
165
275
28
2
0
2019-04-21T11:36:31
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,469
apache/shardingsphere/2861/2862
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2862
https://github.com/apache/shardingsphere/pull/2861
https://github.com/apache/shardingsphere/pull/2861
1
fixes
Wring rewritten SQL in mulitiple threads
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
9d0af952810e2a102c21b20032d8b91fc82c60c2
cdd3781ea29438775d1c9ee7a747d694417ead59
https://github.com/apache/shardingsphere/compare/9d0af952810e2a102c21b20032d8b91fc82c60c2...cdd3781ea29438775d1c9ee7a747d694417ead59
diff --git a/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/generator/SelectEncryptItemTokenGenerator.java b/sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/generator/SelectEncryptItemTokenGenerator.java index 24e42660d43..17...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/generator/UpdateEncryptColumnTokenGenerator.java', 'sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/generator/SelectEncryptItemTokenGenerator.java', 'sharding-core/sharding-cor...
{'.java': 3}
3
3
0
0
3
3,062,612
613,671
78,117
1,063
12,052
2,021
120
3
992
131
213
28
2
0
2019-08-13T08:20:25
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,470
apache/shardingsphere/2824/2823
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2823
https://github.com/apache/shardingsphere/pull/2824
https://github.com/apache/shardingsphere/pull/2824
1
fixes
Can not rewrite correctly when use plainColumn
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
db5780bb8081744f7d5603503896ebc708e89d60
3eb8c5d51be11ce4b08d845fd14c8c2629a64ec6
https://github.com/apache/shardingsphere/compare/db5780bb8081744f7d5603503896ebc708e89d60...3eb8c5d51be11ce4b08d845fd14c8c2629a64ec6
diff --git a/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/EncryptRule.java b/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/EncryptRule.java index f0d7cd4b10a..6944d756e57 100644 --- a/sharding-core/sharding-core-common/src/main/java/org/apac...
['sharding-core/sharding-core-rewrite/src/main/java/org/apache/shardingsphere/core/rewrite/token/EncryptTokenGenerateEngine.java', 'sharding-jdbc/sharding-jdbc-core/src/test/java/org/apache/shardingsphere/shardingjdbc/jdbc/core/resultset/ShardingResultSetTest.java', 'sharding-jdbc/sharding-jdbc-core/src/main/java/org/a...
{'.java': 15}
15
15
0
0
15
3,060,147
613,241
78,070
1,063
7,616
1,390
117
11
1,171
159
259
28
2
0
2019-08-07T11:49:42
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,471
apache/shardingsphere/2771/2768
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2768
https://github.com/apache/shardingsphere/pull/2771
https://github.com/apache/shardingsphere/pull/2771
1
fixes
Get ShardingException when use `NSERT INTO t_plain_encrypt(col3, col4) VALUES (?, ?), (3, 4)`
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/...
09e132e7a98d6d41c811e7c9dad41a1e3f8ae6e2
950008dfcc101d3237724cd83030f3f408b5f546
https://github.com/apache/shardingsphere/compare/09e132e7a98d6d41c811e7c9dad41a1e3f8ae6e2...950008dfcc101d3237724cd83030f3f408b5f546
diff --git a/sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/encrypt/engine/dml/EncryptInsertOptimizeEngine.java b/sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/encrypt/engine/dml/EncryptInsertOptimizeEngine.java index 163e766057a.....
['sharding-core/sharding-core-optimize/src/main/java/org/apache/shardingsphere/core/optimize/encrypt/engine/dml/EncryptInsertOptimizeEngine.java', 'sharding-core/sharding-core-rewrite/src/test/java/org/apache/shardingsphere/core/rewrite/rewriter/EncryptSQLRewriteEngineTest.java', 'sharding-core/sharding-core-optimize/s...
{'.java': 3}
3
3
0
0
3
3,032,602
607,785
77,361
1,059
2,320
419
18
2
1,094
141
241
28
2
0
2019-07-26T06:42:36
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,472
apache/shardingsphere/2710/2613
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2613
https://github.com/apache/shardingsphere/pull/2710
https://github.com/apache/shardingsphere/pull/2710
1
fix
recieve ClassCastException while testing ComplexKeysShardingAlgorithm
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere-example/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/cur...
3a8bab2453ca12e1783e19bf57ade7a1a8dd4725
a25b6fbfb1419cd927bb71eacf6866f0abbdb644
https://github.com/apache/shardingsphere/compare/3a8bab2453ca12e1783e19bf57ade7a1a8dd4725...a25b6fbfb1419cd927bb71eacf6866f0abbdb644
diff --git a/sharding-core/sharding-core-api/src/main/java/org/apache/shardingsphere/api/sharding/complex/ComplexKeysShardingValue.java b/sharding-core/sharding-core-api/src/main/java/org/apache/shardingsphere/api/sharding/complex/ComplexKeysShardingValue.java index faaa06e0076..3a4dade7640 100644 --- a/sharding-core/s...
['sharding-core/sharding-core-api/src/main/java/org/apache/shardingsphere/api/sharding/complex/ComplexKeysShardingValue.java', 'sharding-core/sharding-core-common/src/test/java/org/apache/shardingsphere/core/strategy/route/ShardingStrategyTest.java', 'sharding-core/sharding-core-common/src/main/java/org/apache/sharding...
{'.java': 3}
3
3
0
0
3
3,006,306
603,181
76,729
1,052
1,117
224
15
2
10,734
512
2,938
163
2
8
2019-07-16T01:28:33
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,473
apache/shardingsphere/2708/2687
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2687
https://github.com/apache/shardingsphere/pull/2708
https://github.com/apache/shardingsphere/pull/2708
1
fixes
"select code from t group by code" got duplicate records
## Bug Report ### Which version of ShardingSphere did you use? 3.0.0 ### Which project did you use? Sharding-JDBC or Sharding-Proxy? Sharding-Proxy ### Expected behavior I have a logic table 't' with 2 shards, actual table are 't_0' and 't_1'. When I excute "select code from t group by code" on Sharding-Pr...
e93dc9cc810e83990054840f790a3529b703f272
3ce7f45572e8584cf18869bb9b458789446371bf
https://github.com/apache/shardingsphere/compare/e93dc9cc810e83990054840f790a3529b703f272...3ce7f45572e8584cf18869bb9b458789446371bf
diff --git a/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/AggregationDistinctQueryResult.java b/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/AggregationDistinctQueryResult.java index 21aa167a257...
['sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/MemoryQueryResult.java', 'sharding-core/sharding-core-merge/src/main/java/org/apache/shardingsphere/core/merge/dql/groupby/GroupByRowComparator.java', 'sharding-core/sharding-core-execute/src/main/java/org/apac...
{'.java': 18}
18
18
0
0
18
2,992,753
600,410
76,352
1,047
6,618
1,287
121
10
4,063
580
1,341
163
0
4
2019-07-15T06:38:34
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,474
apache/shardingsphere/2678/2629
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2629
https://github.com/apache/shardingsphere/pull/2678
https://github.com/apache/shardingsphere/pull/2678
1
fixes
Get NullPointerException when execute SQL on tables without sharding rule
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere-example/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/cur...
ae3ea6a8edbd2bc709e507b78c1fb90021b8f7f5
3b9f933ca11b84e67e86cb8bc362e78c45501b12
https://github.com/apache/shardingsphere/compare/ae3ea6a8edbd2bc709e507b78c1fb90021b8f7f5...3b9f933ca11b84e67e86cb8bc362e78c45501b12
diff --git a/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingDataSourceNames.java b/sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingDataSourceNames.java index 79d5acf97dc..64d007846cb 100644 --- a/sharding-core/sharding-core-commo...
['sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/ShardingDataSourceNames.java', 'sharding-core/sharding-core-common/src/test/java/org/apache/shardingsphere/core/rule/ShardingRuleTest.java', 'sharding-core/sharding-core-common/src/main/java/org/apache/shardingsphere/core/rule/Shardi...
{'.java': 4}
4
4
0
0
4
2,979,125
597,718
76,020
1,041
513
91
5
2
1,809
207
373
40
2
1
2019-07-08T12:55:40
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,475
apache/shardingsphere/2598/2596
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2596
https://github.com/apache/shardingsphere/pull/2598
https://github.com/apache/shardingsphere/pull/2598
1
fix
use sharding-jdbc-spring-boot-starter throw java.util.NoSuchElementException: No value bound
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/incubator-shardingsphere-example/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/cur...
a4ec12b259bc3d0349e3e2369f4ef7927254787c
f9fa5dbcc7f941206e52446b9d69bb7b21f89f47
https://github.com/apache/shardingsphere/compare/a4ec12b259bc3d0349e3e2369f4ef7927254787c...f9fa5dbcc7f941206e52446b9d69bb7b21f89f47
diff --git a/sharding-spring/sharding-jdbc-orchestration-spring/sharding-jdbc-orchestration-spring-boot-starter/src/main/java/org/apache/shardingsphere/shardingjdbc/orchestration/spring/boot/util/PropertyUtil.java b/sharding-spring/sharding-jdbc-orchestration-spring/sharding-jdbc-orchestration-spring-boot-starter/src/m...
['sharding-spring/sharding-jdbc-spring/sharding-jdbc-spring-boot-starter/src/main/java/org/apache/shardingsphere/shardingjdbc/spring/boot/util/PropertyUtil.java', 'sharding-spring/sharding-jdbc-orchestration-spring/sharding-jdbc-orchestration-spring-boot-starter/src/main/java/org/apache/shardingsphere/shardingjdbc/orch...
{'.java': 3}
3
3
0
0
3
2,990,278
600,549
76,529
1,049
2,538
493
41
3
7,537
329
1,913
130
2
4
2019-06-24T02:04:23
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,489
apache/shardingsphere/2296/2224
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/2224
https://github.com/apache/shardingsphere/pull/2296
https://github.com/apache/shardingsphere/pull/2296
1
fixes
wrong result for the null value in int column
age null mysql> insert into my_orders(name,create_time,age,ttt,dc) values('ruiaylin1', '2019-04-16 18:00:00', null,null, 14.56) ; Query OK, 1 row affected (0.10 sec) 【proxy】 mysql> select * from my_orders ; +------+-----------+-----------------------+------+------+-------+ | id | name ...
bfcbbeb0654ede68527ab51a1b71376c8c96e13e
f96642cde22a46d9cee2c1837b245614df25f53c
https://github.com/apache/shardingsphere/compare/bfcbbeb0654ede68527ab51a1b71376c8c96e13e...f96642cde22a46d9cee2c1837b245614df25f53c
diff --git a/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/MemoryQueryResult.java b/sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/MemoryQueryResult.java index 52d81c6e2fe..1e79d31f888 100644 --- a...
['sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/MemoryQueryResult.java', 'sharding-core/sharding-core-execute/src/main/java/org/apache/shardingsphere/core/execute/sql/execute/result/QueryResultUtil.java', 'sharding-core/sharding-core-execute/src/test/java/or...
{'.java': 3}
3
3
0
0
3
3,235,472
653,661
81,811
1,108
681
127
15
2
1,427
196
522
29
0
0
2019-04-29T05:03:01
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,527
apache/shardingsphere/1139/1057
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1057
https://github.com/apache/shardingsphere/pull/1139
https://github.com/apache/shardingsphere/pull/1139
1
fixes
Table name of no sharding is set low-case defaultly
### Which version of Sharding-Sphere do you using? 2.0.3 ### Expected behavior insert data correctly ### Actual behavior can't insert data, throw exception "Table 'test' doesn't exist" ### Reason analyze Database is case-sensitive and table name is in upper-case. a part of tables is sharing, and other part...
18fcde4ca1e52d13a4a2a7c55e894347de27dc67
e3d5cc886106bcca70e9763e8846e765635832e9
https://github.com/apache/shardingsphere/compare/18fcde4ca1e52d13a4a2a7c55e894347de27dc67...e3d5cc886106bcca70e9763e8846e765635832e9
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/rule/ShardingRule.java b/sharding-core/src/main/java/io/shardingsphere/core/rule/ShardingRule.java index 1114f15583b..3ff955fccb9 100644 --- a/sharding-core/src/main/java/io/shardingsphere/core/rule/ShardingRule.java +++ b/sharding-core/src/main/java/io/sh...
['sharding-core/src/main/java/io/shardingsphere/core/rule/ShardingRule.java']
{'.java': 1}
1
1
0
0
1
2,263,124
470,701
63,556
809
161
25
2
1
506
77
117
12
0
0
2018-08-14T04:39:37
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,526
apache/shardingsphere/1148/1143
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1143
https://github.com/apache/shardingsphere/pull/1148
https://github.com/apache/shardingsphere/pull/1148
1
fixes
No result from SQL "SELECT COUNT(*) FROM t_order" in prepared statement
For English only, other languages we will close it directly. Please answer these questions before submitting your issue. Thanks! ### Which version of Sharding-Sphere do you using? 3.0.0.M3-SNAPSHOT ### Which project do you using? Sharding-JDBC or Sharding-Proxy? Sharding-Proxy ### Expected behavior Retur...
97568b5db775e091fae6bbbb488c165eeb556065
17fc6da9a1c46af96e8e5b1270a8541b14cfbd0f
https://github.com/apache/shardingsphere/compare/97568b5db775e091fae6bbbb488c165eeb556065...17fc6da9a1c46af96e8e5b1270a8541b14cfbd0f
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java b/sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java index 0bf8206c81b..4d21232c407 100644 --- a/s...
['sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java']
{'.java': 1}
1
1
0
0
1
2,256,773
469,460
63,326
805
159
28
3
1
2,453
347
764
77
0
0
2018-08-15T07:13:45
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,525
apache/shardingsphere/1161/1143
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1143
https://github.com/apache/shardingsphere/pull/1161
https://github.com/apache/shardingsphere/pull/1161
1
fixes
No result from SQL "SELECT COUNT(*) FROM t_order" in prepared statement
For English only, other languages we will close it directly. Please answer these questions before submitting your issue. Thanks! ### Which version of Sharding-Sphere do you using? 3.0.0.M3-SNAPSHOT ### Which project do you using? Sharding-JDBC or Sharding-Proxy? Sharding-Proxy ### Expected behavior Retur...
3c35015feb7a6965e404a6a0f91203fb690473be
1c42231b63c01fe32d8d0ccb3102918e411481c3
https://github.com/apache/shardingsphere/compare/3c35015feb7a6965e404a6a0f91203fb690473be...1c42231b63c01fe32d8d0ccb3102918e411481c3
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java b/sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java index 4d21232c407..6579c517db2 100644 --- a/s...
['sharding-proxy/src/main/java/io/shardingsphere/proxy/transport/mysql/packet/command/query/binary/execute/BinaryProtocolValue.java']
{'.java': 1}
1
1
0
0
1
2,258,310
469,766
63,362
804
314
51
6
1
2,453
347
764
77
0
0
2018-08-17T12:46:12
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,517
apache/shardingsphere/1353/1351
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1351
https://github.com/apache/shardingsphere/pull/1353
https://github.com/apache/shardingsphere/pull/1353
1
fixes
Parsing error from sql "SHOW FULL TABLES FROM `sharding_db` WHERE Table_type != 'VIEW'"
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [Sharding-Sphere Doc](http://shardingsphere.io/document/current/en/overview...
837a2925a38a6784908f62ada033e7945fc0cf00
966c221ae670432cddf1fafbaa5cb80e16010c6e
https://github.com/apache/shardingsphere/compare/837a2925a38a6784908f62ada033e7945fc0cf00...966c221ae670432cddf1fafbaa5cb80e16010c6e
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/dialect/mysql/sql/MySQLShowParser.java b/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/dialect/mysql/sql/MySQLShowParser.java index 391a578e0b5..cc39eedae63 100644 --- a/sharding-core/src/main/java/io/shardingsphere/core/...
['sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/dialect/mysql/sql/MySQLShowParser.java', 'sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/jdbc/JDBCBackendHandler.java']
{'.java': 2}
2
2
0
0
2
2,236,797
466,313
62,563
793
275
49
6
2
1,434
200
335
32
2
0
2018-10-18T04:24:42
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,516
apache/shardingsphere/1369/1349
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1349
https://github.com/apache/shardingsphere/pull/1369
https://github.com/apache/shardingsphere/pull/1369
1
fixes
Registry can not watch changes from sharding proxy clients.
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [Sharding-Sphere Doc](http://shardingsphere.io/document/current/en/overview...
32d08cc13bd948d3f7d62186a78d76d4feed5c77
40d28cf217625c182d0a044b22798423353cca39
https://github.com/apache/shardingsphere/compare/32d08cc13bd948d3f7d62186a78d76d4feed5c77...40d28cf217625c182d0a044b22798423353cca39
diff --git a/sharding-jdbc/sharding-jdbc-orchestration/src/main/java/io/shardingsphere/shardingjdbc/orchestration/internal/datasource/OrchestrationMasterSlaveDataSource.java b/sharding-jdbc/sharding-jdbc-orchestration/src/main/java/io/shardingsphere/shardingjdbc/orchestration/internal/datasource/OrchestrationMasterSlav...
['sharding-orchestration/sharding-orchestration-core/src/main/java/io/shardingsphere/orchestration/internal/OrchestrationFacade.java', 'sharding-orchestration/sharding-orchestration-core/src/main/java/io/shardingsphere/orchestration/config/OrchestrationType.java', 'sharding-jdbc/sharding-jdbc-orchestration/src/main/jav...
{'.java': 5}
5
5
0
0
5
2,055,925
429,256
57,222
741
2,055
398
44
5
925
121
204
24
2
0
2018-10-23T08:16:27
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,515
apache/shardingsphere/1377/1373
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1373
https://github.com/apache/shardingsphere/pull/1377
https://github.com/apache/shardingsphere/pull/1377
2
fixes
Mysql aurora version not supported
## Bug Report jdbcUrl = jdbc:mysql:aurora://host:3306/.. Then throws exception: "The URL of JDBC is not supported. Please refer to this pattern: jdbc:mysql://([\\w\\-\\.]+):?([0-9]*)/([\\w\\-]+);?\\S* " See: https://github.com/sharding-sphere/sharding-sphere/blob/dev/sharding-core/src/main/java/io/shardingsphere/c...
15615247de30e69461adba8caca9498a22f06151
ed4895486c9ed499df206edfbf6218d826548c6a
https://github.com/apache/shardingsphere/compare/15615247de30e69461adba8caca9498a22f06151...ed4895486c9ed499df206edfbf6218d826548c6a
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/metadata/datasource/dialect/MySQLDataSourceMetaData.java b/sharding-core/src/main/java/io/shardingsphere/core/metadata/datasource/dialect/MySQLDataSourceMetaData.java index f9a202c76c0..00a79826cc3 100644 --- a/sharding-core/src/main/java/io/shardingsphere...
['sharding-core/src/main/java/io/shardingsphere/core/metadata/datasource/dialect/MySQLDataSourceMetaData.java']
{'.java': 1}
1
1
0
0
1
2,056,782
429,438
57,241
741
681
177
8
1
382
25
109
7
1
0
2018-10-25T02:57:01
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,500
apache/shardingsphere/1895/1830
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1830
https://github.com/apache/shardingsphere/pull/1895
https://github.com/apache/shardingsphere/pull/1895
1
fixes
4.0.0.M1-SNAPSHOT report a error : current logic schema is null
The version using sharding-sphere is 4.0.0.M1-SNAPSHOT. I use sharding-Proxy. I configure a config-sharding file, there is no problem in querying data with java code, but I will get an error when connecting to the service with navicat. Unknown exception: current logic schema is null
4b1cc76450542840d42d076faae89458484ecee4
d06ae376c2e53001f41cfea603814939047e4e67
https://github.com/apache/shardingsphere/compare/4b1cc76450542840d42d076faae89458484ecee4...d06ae376c2e53001f41cfea603814939047e4e67
diff --git a/sharding-proxy/src/main/java/org/apache/shardingsphere/shardingproxy/backend/text/ComQueryBackendHandlerFactory.java b/sharding-proxy/src/main/java/org/apache/shardingsphere/shardingproxy/backend/text/ComQueryBackendHandlerFactory.java index 7d55f1389d0..f874705f857 100644 --- a/sharding-proxy/src/main/jav...
['sharding-proxy/src/main/java/org/apache/shardingsphere/shardingproxy/backend/text/ComQueryBackendHandlerFactory.java']
{'.java': 1}
1
1
0
0
1
2,831,861
575,304
72,362
965
1,163
212
18
1
305
44
73
11
0
0
2019-02-20T08:40:22
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,544
apache/shardingsphere/329/328
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/328
https://github.com/apache/shardingsphere/pull/329
https://github.com/apache/shardingsphere/pull/329
1
fixes
ShardingConnection commit 时,持有的 Connection commit 异常时,后面的 Connection 无法提交
ShardingConnection 继承自 AbstractConnectionAdapter, commit 代码如下: ```Java // AbstractConnectionAdapter.java @Override public final void commit() throws SQLException { for (Connection each : getConnections()) { each.commit(); } } @Override public final voi...
c96a91e76cbce11bb24bbd5802cfb23c7ca3d95c
21c326939bce09f5d0ec73f45563e85807bf986a
https://github.com/apache/shardingsphere/compare/c96a91e76cbce11bb24bbd5802cfb23c7ca3d95c...21c326939bce09f5d0ec73f45563e85807bf986a
diff --git a/sharding-jdbc-core/src/main/java/com/dangdang/ddframe/rdb/sharding/jdbc/adapter/AbstractConnectionAdapter.java b/sharding-jdbc-core/src/main/java/com/dangdang/ddframe/rdb/sharding/jdbc/adapter/AbstractConnectionAdapter.java index e21c6fd1c3e..fc26e005572 100644 --- a/sharding-jdbc-core/src/main/java/com/da...
['sharding-jdbc-core/src/main/java/com/dangdang/ddframe/rdb/sharding/jdbc/adapter/AbstractConnectionAdapter.java']
{'.java': 1}
1
1
0
0
1
917,716
201,068
26,236
335
295
46
8
1
1,226
106
255
46
0
2
2017-08-12T08:36:48
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,501
apache/shardingsphere/1760/1754
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1754
https://github.com/apache/shardingsphere/pull/1760
https://github.com/apache/shardingsphere/pull/1760
1
fixes
can't get partition key value
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [ShardingSphere Doc](http://shardingsphere.io/document/current/en/overview/...
66fb25b3cc7e760f9495cd19bb92c4dd3df4b9ca
316991ec0c1bd9369c9e7b23a62077d8f3e02453
https://github.com/apache/shardingsphere/compare/66fb25b3cc7e760f9495cd19bb92c4dd3df4b9ca...316991ec0c1bd9369c9e7b23a62077d8f3e02453
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/parsing/antlr/sql/segment/expr/CommonExpressionSegment.java b/sharding-core/src/main/java/io/shardingsphere/core/parsing/antlr/sql/segment/expr/CommonExpressionSegment.java index d1e0e029c8f..13a4ed01a43 100644 --- a/sharding-core/src/main/java/io/sharding...
['sharding-core/src/main/java/io/shardingsphere/core/parsing/antlr/sql/segment/expr/CommonExpressionSegment.java']
{'.java': 1}
1
1
0
0
1
2,400,017
499,666
66,606
869
58
13
2
1
1,655
169
401
42
2
0
2019-01-16T02:31:36
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,513
apache/shardingsphere/1471/1415
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1415
https://github.com/apache/shardingsphere/pull/1471
https://github.com/apache/shardingsphere/pull/1471
1
fixes
mysql workbench cannot connect in 3.0.0
I config username and password and can connect in mysql wordbench in **3.0.0.M2**. But i cannot connect in **3.0.0**, return is _"Failed to Connect to MySQL at 127.0.0.1:3307 with user root Unknown database '`sharding_db`'"_
878ed163b080365ad7ff04f90a3ebdb6be92d0e0
6dd758a8ae218e49a6baffe2e2f4f198b113d6cc
https://github.com/apache/shardingsphere/compare/878ed163b080365ad7ff04f90a3ebdb6be92d0e0...6dd758a8ae218e49a6baffe2e2f4f198b113d6cc
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/SchemaIgnoreBackendHandler.java b/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/SchemaIgnoreBackendHandler.java index 3f70ebe653a..a5c52c37db4 100644 --- a/sharding-proxy/src/main/java/io/shardingsphere/shardingprox...
['sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/backend/SchemaIgnoreBackendHandler.java']
{'.java': 1}
1
1
0
0
1
2,246,716
469,274
62,158
833
171
34
3
1
231
34
69
6
0
0
2018-11-14T06:41:26
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,512
apache/shardingsphere/1488/1467
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1467
https://github.com/apache/shardingsphere/pull/1488
https://github.com/apache/shardingsphere/pull/1488
1
fixes
read-write splitting many thread
Read and write separation, no proper routing when multithreading version:3.0.0 Our requirement is to force the main library to be routed at the beginning of the "add", "create", "save", "insert", "update", "del" methods. In the process of using high-concurrency, the route is not correct。 Found in the middlewar...
73a20b577a79bce969183026262bab033d13db0a
ed155384a86d74142accad8acc869c89896d7f3c
https://github.com/apache/shardingsphere/compare/73a20b577a79bce969183026262bab033d13db0a...ed155384a86d74142accad8acc869c89896d7f3c
diff --git a/sharding-core/src/main/java/io/shardingsphere/api/HintManager.java b/sharding-core/src/main/java/io/shardingsphere/api/HintManager.java index d060ef2db29..01c725f4c8d 100644 --- a/sharding-core/src/main/java/io/shardingsphere/api/HintManager.java +++ b/sharding-core/src/main/java/io/shardingsphere/api/Hint...
['sharding-core/src/test/java/io/shardingsphere/core/hint/HintManagerHolderTest.java', 'sharding-core/src/main/java/io/shardingsphere/core/hint/HintManagerHolder.java', 'sharding-core/src/main/java/io/shardingsphere/api/HintManager.java']
{'.java': 3}
3
3
0
0
3
2,271,506
474,365
62,906
840
4,356
960
96
2
2,730
256
587
68
0
2
2018-11-16T13:02:29
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,518
apache/shardingsphere/1341/1340
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1340
https://github.com/apache/shardingsphere/pull/1341
https://github.com/apache/shardingsphere/pull/1341
1
fixes
Proxy gets NULL Pointer exception when disable datasource from registry.
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/sharding-sphere/sharding-sphere/issues). - Read documentation: [Sharding-Sphere Doc](http://shardingsphere.io/document/current/en/overview...
90b411eee57fd7370f2a6072150c921861234d21
086431405f8a4083c77cfce188b1e556075577c4
https://github.com/apache/shardingsphere/compare/90b411eee57fd7370f2a6072150c921861234d21...086431405f8a4083c77cfce188b1e556075577c4
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/runtime/GlobalRegistry.java b/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/runtime/GlobalRegistry.java index c2f905f8b79..aade829a5dc 100644 --- a/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/runtime/GlobalRegistry...
['sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/runtime/GlobalRegistry.java']
{'.java': 1}
1
1
0
0
1
2,231,928
465,317
62,513
793
794
139
11
1
876
115
201
21
2
0
2018-10-14T10:31:59
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,510
apache/shardingsphere/1588/1533
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1533
https://github.com/apache/shardingsphere/pull/1588
https://github.com/apache/shardingsphere/pull/1588
1
fixes
The result of `getBytes` is wrong.
## Bug Report ### Which version of Sharding-Sphere did you use? 3.0.0 ### Which project did you use? Sharding-JDBC or Sharding-Proxy? Sharding-Proxy ### Expected behavior The result of bytes should be: [88, -99, -9, 80, 65, -64, 65, -70, -83, -98, 49, 15, -115, -103, 13, 116] ### Actual behavior ...
2da4913fc627d38da54ed3cc46d15a87179dab28
938442f3eb38e00b93f67d091b0e9e7dd132e952
https://github.com/apache/shardingsphere/compare/2da4913fc627d38da54ed3cc46d15a87179dab28...938442f3eb38e00b93f67d091b0e9e7dd132e952
diff --git a/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/transport/mysql/constant/ColumnType.java b/sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/transport/mysql/constant/ColumnType.java index e65b43894bc..fdd19647ffd 100644 --- a/sharding-proxy/src/main/java/io/shardingsphere/shardingpr...
['sharding-proxy/src/test/java/io/shardingsphere/shardingproxy/transport/mysql/constant/ColumnTypeTest.java', 'sharding-proxy/src/main/java/io/shardingsphere/shardingproxy/transport/mysql/packet/command/query/binary/execute/protocol/StringLenencBinaryProtocolValue.java', 'sharding-proxy/src/main/java/io/shardingsphere/...
{'.java': 5}
5
5
0
0
5
2,424,645
507,120
67,201
907
1,358
279
32
4
1,320
188
443
47
0
2
2018-12-10T02:26:45
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,545
apache/shardingsphere/325/322
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/322
https://github.com/apache/shardingsphere/pull/325
https://github.com/apache/shardingsphere/pull/325
1
fixes
可执行jar发布,用YamlShardingDataSource时报错
Please answer these questions before submitting your issue. Thanks! ### Which version of Sharding-Jdbc do you using? 1.5.0.M3 ### Expected behavior 我用可执行jar的方式发布,用YamlShardingDataSource生成datasource ### Actual behavior 报错: class path resource [xx.yml] cannot be resolved to absolute file path because it does ...
d6ac50704f5e45beeeded09a4f0b160c7320b993
3a00d604ae798e295c6077d7fbf874448a44c8c4
https://github.com/apache/shardingsphere/compare/d6ac50704f5e45beeeded09a4f0b160c7320b993...3a00d604ae798e295c6077d7fbf874448a44c8c4
diff --git a/sharding-jdbc-config-parent/sharding-jdbc-config-yaml/src/main/java/com/dangdang/ddframe/rdb/sharding/config/yaml/api/YamlShardingDataSource.java b/sharding-jdbc-config-parent/sharding-jdbc-config-yaml/src/main/java/com/dangdang/ddframe/rdb/sharding/config/yaml/api/YamlShardingDataSource.java index e35f973...
['sharding-jdbc-config-parent/sharding-jdbc-config-yaml/src/main/java/com/dangdang/ddframe/rdb/sharding/config/yaml/api/YamlShardingDataSource.java']
{'.java': 1}
1
1
0
0
1
867,590
189,477
24,878
310
777
141
19
1
746
69
211
17
1
0
2017-08-11T04:03:19
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0
3,528
apache/shardingsphere/1056/1055
apache
shardingsphere
https://github.com/apache/shardingsphere/issues/1055
https://github.com/apache/shardingsphere/pull/1056
https://github.com/apache/shardingsphere/pull/1056
1
fixes
Throw NullPointerException in InsertColumnsClauseParser.
For English only, other languages we will close it directly. Please answer these questions before submitting your issue. Thanks! ### Which version of Sharding-Sphere do you using? 3.0.0.M2 ### Expected behavior If there is no table to be queried, ss should give information that this logic table does not exist....
3c166002e0eb5985ebadd63ee8cad8e7f6a584df
8de048297db9eb16f2ea4f5674f51612684421eb
https://github.com/apache/shardingsphere/compare/3c166002e0eb5985ebadd63ee8cad8e7f6a584df...8de048297db9eb16f2ea4f5674f51612684421eb
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/clause/InsertColumnsClauseParser.java b/sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/clause/InsertColumnsClauseParser.java index e285218ff1c..4a300b38567 100644 --- a/sharding-core/src/main/java/io/shardingsphere/core/pa...
['sharding-proxy/src/main/java/io/shardingsphere/proxy/frontend/mysql/MySQLFrontendHandler.java', 'sharding-core/src/main/java/io/shardingsphere/core/parsing/parser/clause/InsertColumnsClauseParser.java']
{'.java': 2}
2
2
0
0
2
2,179,328
453,634
61,439
773
512
96
5
2
744
113
165
16
0
0
2018-07-27T05:02:52
18,658
Java
{'Java': 22772685, 'ANTLR': 1011078, 'FreeMarker': 120878, 'Shell': 14522, 'Dockerfile': 13922, 'Batchfile': 3214}
Apache License 2.0