sqlui 0.1.77 → 0.1.79

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 813ba5e47c2d4409ff6601fd9974f649f4099da7bc61dc82d2f619313c033cbe
4
- data.tar.gz: 57e1ebab4287fd3b49f2d6e1cc37009cabc60aba6d3fb6c7b2fed5f3cc107d5f
3
+ metadata.gz: f33db27ea5e4cdb94375702d9637dfff950d97e7cd63d72b45182bfe6fe07101
4
+ data.tar.gz: e878b5ab7bc1f6fa92d5ccdf9172c8ef06a5d28d5a5f1c5c88bb11b50c2b23b7
5
5
  SHA512:
6
- metadata.gz: 48a36192980463f3a2ce4ef80b3b74011ee8e42b8d6dd215b8ac8f01f5146682ceca736888c661789c024b57a33bf7e7b771ea10c1f5b33f2d91891689eae5ef
7
- data.tar.gz: 21ea275d80725c1907ed6d04e3c5d3c83bd84a18fbbfdf56d490f60959b3fb515c84bb219020afc3fd4769add109031c6bba9a6cbd89698116a8cb1ca715019d
6
+ metadata.gz: 19f03e1f3ffcfb336e0cb1d5053743db0050bb6824e4724b41808914d288f21ae8a7d1573ea15008ebc4bca3451d8700889793c8d7dca8cd7fbb2e9bf0b4c9bf
7
+ data.tar.gz: e9c95ea2e7b646e98b6782c3eaecfb3299977fb0753f6cbec5266658b8fd456d7ddbc714f7037fd5d79047da4b81dfb5d90a0a7b2af13b33de49a8b5c6c1d712
data/.release-version CHANGED
@@ -1 +1 @@
1
- 0.1.77
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.77
4
+ version: 0.1.79
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Dower