sqlui 0.1.78 → 0.1.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.release-version +1 -1
- data/app/github/tree_client.rb +2 -2
- data/client/resources/sqlui.js +0 -9
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f33db27ea5e4cdb94375702d9637dfff950d97e7cd63d72b45182bfe6fe07101
|
|
4
|
+
data.tar.gz: e878b5ab7bc1f6fa92d5ccdf9172c8ef06a5d28d5a5f1c5c88bb11b50c2b23b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19f03e1f3ffcfb336e0cb1d5053743db0050bb6824e4724b41808914d288f21ae8a7d1573ea15008ebc4bca3451d8700889793c8d7dca8cd7fbb2e9bf0b4c9bf
|
|
7
|
+
data.tar.gz: e9c95ea2e7b646e98b6782c3eaecfb3299977fb0753f6cbec5266658b8fd456d7ddbc714f7037fd5d79047da4b81dfb5d90a0a7b2af13b33de49a8b5c6c1d712
|
data/.release-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.79
|
data/app/github/tree_client.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Github
|
|
|
18
18
|
class TreeClient
|
|
19
19
|
include Checks
|
|
20
20
|
|
|
21
|
-
@thread_pool = Concurrent::FixedThreadPool.new(
|
|
21
|
+
@thread_pool = Concurrent::FixedThreadPool.new(3)
|
|
22
22
|
|
|
23
23
|
class << self
|
|
24
24
|
attr_reader :thread_pool
|
|
@@ -60,7 +60,7 @@ module Github
|
|
|
60
60
|
end
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
-
latch.await(timeout:
|
|
63
|
+
latch.await(timeout: 10 + tree_size)
|
|
64
64
|
raise 'failed to load saved files' unless response['tree'].all? { |blob| blob['content'] }
|
|
65
65
|
|
|
66
66
|
Tree.for(owner: owner, repo: repo, ref: ref, tree_response: response)
|
data/client/resources/sqlui.js
CHANGED
|
@@ -24239,15 +24239,6 @@
|
|
|
24239
24239
|
quoted: `${quotedQualifiedTableName} \`${alias}\``,
|
|
24240
24240
|
unquoted: `${qualifiedTableName} ${alias}`
|
|
24241
24241
|
});
|
|
24242
|
-
// Add a completion which only inserts the alias for use with "select" or "where" or "on".
|
|
24243
|
-
tables.push({
|
|
24244
|
-
label: `${qualifiedTableName} ${alias}`,
|
|
24245
|
-
boost: boost + 1,
|
|
24246
|
-
type: 'constant',
|
|
24247
|
-
completion_types: ['alias_only'],
|
|
24248
|
-
quoted: '`' + alias + '`',
|
|
24249
|
-
unquoted: alias
|
|
24250
|
-
});
|
|
24251
24242
|
tables.push({
|
|
24252
24243
|
label: alias,
|
|
24253
24244
|
boost: boost + 1,
|