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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7fdba78eccb70ef82ef3bf76e4d27009962417de920b46dad487394edd5696c7
4
- data.tar.gz: 759c063ac9108a4badc3a0c4be5e271ffa8b4296c3450ab3470107884a54aa56
3
+ metadata.gz: f33db27ea5e4cdb94375702d9637dfff950d97e7cd63d72b45182bfe6fe07101
4
+ data.tar.gz: e878b5ab7bc1f6fa92d5ccdf9172c8ef06a5d28d5a5f1c5c88bb11b50c2b23b7
5
5
  SHA512:
6
- metadata.gz: 86d7f635e0e36634b096ccc1859e90469d0a90d471db6bbfbad38f24ba99f016c99123d905ef21a1f1389c2d141b68bf64b0f1fe086545f404b8d8ae787a5ca1
7
- data.tar.gz: 1c5836479a4d0c92a31288672dc92d66c3b9eb4f86df95102e03234af6563736b970461278d4e6487b022bb010453b60a631a0472f2f97e57bb797d7560e722f
6
+ metadata.gz: 19f03e1f3ffcfb336e0cb1d5053743db0050bb6824e4724b41808914d288f21ae8a7d1573ea15008ebc4bca3451d8700889793c8d7dca8cd7fbb2e9bf0b4c9bf
7
+ data.tar.gz: e9c95ea2e7b646e98b6782c3eaecfb3299977fb0753f6cbec5266658b8fd456d7ddbc714f7037fd5d79047da4b81dfb5d90a0a7b2af13b33de49a8b5c6c1d712
data/.release-version CHANGED
@@ -1 +1 @@
1
- 0.1.78
1
+ 0.1.79
@@ -18,7 +18,7 @@ module Github
18
18
  class TreeClient
19
19
  include Checks
20
20
 
21
- @thread_pool = Concurrent::FixedThreadPool.new(5)
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: [10, tree_size / 2].max)
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)
@@ -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,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.78
4
+ version: 0.1.79
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Dower