kaqing 2.0.87__py3-none-any.whl → 2.0.89__py3-none-any.whl

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.

Potentially problematic release.


This version of kaqing might be problematic. Click here for more details.

adam/sql/state_machine.py CHANGED
@@ -138,7 +138,7 @@ SPEC = [
138
138
  '- > ( > select_from_lp_',
139
139
  '- < ) > select_from_sq',
140
140
  'select_from_lp_ > select > select',
141
- 'select_from_x > , > select_from_x_comma_',
141
+ 'select_from_x > , > select_from_x_comma_ ^ (select,tables',
142
142
  'select_from_sq_ > as > select_from_x_as ^ as',
143
143
  'select_from_x_comma_ > name > select_from_x ^ tables',
144
144
  'select_from_x_ ^ as,where,inner join,left outer join,right outer join,full outer join,group by,order by,limit',
@@ -164,7 +164,8 @@ SPEC = [
164
164
  'select_from_x_as_x > , > select_from_x_as_x_comma_',
165
165
  'select_from_x_as_x_comma_ > name > select_from_x ^ tables',
166
166
  'select_where_ > name > select_where_a ^ columns',
167
- 'select_where_a > comparison > select_where_a_op ^ =,<,<=,>,>=,<>,like,not,in',
167
+ 'select_where_a > name > select_where_a ^ columns,=,<,<=,>,>=,<>',
168
+ '- > comparison > select_where_a_op',
168
169
  'select_where_a_ > comparison > select_where_a_op ^ =,<,<=,>,>=,<>,like,not,in',
169
170
  '- > not > select_where_a_not',
170
171
  '- > in > select_where_a_in',
@@ -187,14 +188,16 @@ SPEC = [
187
188
  '- > limit > select_where_sc_limit',
188
189
  'select_group_ > by > select_group_by ^ by',
189
190
  'select_group_by_ > name > select_group_by_a ^ columns',
190
- 'select_group_by_a > , > select_group_by_a_comma_',
191
+ 'select_group_by_a > name > select_group_by_a ^ columns',
192
+ '- > , > select_group_by_a_comma_ ^ columns',
191
193
  'select_group_by_a_comma_ > name > select_group_by_a ^ columns',
192
194
  'select_group_by_a_ > limit > select_where_sc_limit ^ limit,order by',
193
195
  '- > order > select_order',
194
196
  '- > order by > select_order_by',
195
197
  'select_order_ > by > select_order_by ^ by',
196
198
  'select_order_by_ > name > select_order_by_a ^ columns',
197
- 'select_order_by_a > , > select_order_by_a_comma_',
199
+ 'select_order_by_a > name > select_order_by_a ^ columns',
200
+ '- > , > select_order_by_a_comma_',
198
201
  'select_order_by_a_comma_ > name > select_order_by_a ^ columns',
199
202
  'select_order_by_a_ > desc|asc > select_order_by_a_desc ^ desc,asc,limit',
200
203
  '- > limit > select_where_sc_limit',
@@ -213,20 +216,25 @@ SPEC = [
213
216
  'select_from_x_full_ > join > select_join ^ outer join',
214
217
  '- > outer > select_from_x_full_outer',
215
218
  'select_from_x_full_outer_ > join > select_join ^ join',
219
+ 'select_x_join_y > name > select_x_join_y ^ tables',
216
220
  'select_x_join_y_ > as > select_x_join_y_as ^ as,on',
217
221
  '- > on > select_x_join_y_on ^ as,on',
218
222
  'select_x_join_y_as_ > name > select_x_join_y_as_y ^ x,y,z',
219
223
  'select_x_join_y_as_y_ > on > select_x_join_y_on ^ on',
220
224
  'select_x_join_y_on_ > name > select_x_join_y_on_a ^ columns',
221
- 'select_x_join_y_on_a > comparison > select_x_join_y_on_a_op ^ =',
225
+ 'select_x_join_y_on_a > name > select_x_join_y_on_a ^ columns,=',
226
+ '- > comparison > select_x_join_y_on_a_op',
227
+ 'select_x_join_y_on_a_ > comparison > select_x_join_y_on_a_op ^ =',
222
228
  'select_x_join_y_on_a_op > name > select_x_join_y_on_a_op_b ^ columns',
223
- 'select_x_join_y_on_a_op_b > _ > select_from_x_as_x_',
229
+ 'select_x_join_y_on_a_op_b > name > select_x_join_y_on_a_op_b ^ columns',
230
+ '- > _ > select_from_x_as_x_',
224
231
 
225
232
 
226
233
  ' > insert > insert',
227
234
  'insert_ > into > insert_into ^ into',
228
235
  'insert_into_ > name > insert_into_x ^ tables',
229
- 'insert_into_x > ( > insert_into_x_lp_',
236
+ 'insert_into_x > name > insert_into_x ^ tables',
237
+ '- > ( > insert_into_x_lp_',
230
238
  'insert_into_x_ > ( > insert_into_x_lp_ ^ (,values(',
231
239
  '- > values > insert_values',
232
240
  'insert_into_x_lp_ > name > insert_into_x_lp_a ^ id',
@@ -243,6 +251,7 @@ SPEC = [
243
251
 
244
252
  ' > update > update',
245
253
  'update_ > name > update_x ^ tables',
254
+ 'update_x > name > update_x ^ tables',
246
255
  'update_x_ > set > update_set ^ set',
247
256
  'update_set_ > name > update_set_a ^ id',
248
257
  'update_set_a > comparison > update_set_a_op',
@@ -273,6 +282,7 @@ SPEC = [
273
282
  ' > delete > delete',
274
283
  'delete_ > from > delete_from ^ from',
275
284
  'delete_from_ > name > delete_from_x ^ tables',
285
+ 'delete_from_x > name > delete_from_x ^ tables',
276
286
  'delete_from_x_ > where > update_where ^ where',
277
287
  ]
278
288
 
adam/version.py CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
- __version__ = "2.0.87" #: the working version
4
+ __version__ = "2.0.89" #: the working version
5
5
  __release__ = "1.0.0" #: the release version
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kaqing
3
- Version: 2.0.87
3
+ Version: 2.0.89
4
4
  Summary: UNKNOWN
5
5
  Home-page: UNKNOWN
6
6
  License: UNKNOWN
@@ -16,7 +16,7 @@ adam/repl_state.py,sha256=dXyGlWXcSsfCjrYwMhU44PVn_oThSZ8dhJ5HCVE8-qU,8743
16
16
  adam/utils.py,sha256=sbsNZP3qGJtb6fXCa4dDXHry5ay9ev583cCZIQzy07s,7382
17
17
  adam/utils_athena.py,sha256=tU6Arg4g7eKV6ei9SLgakOJJqxKgSCsII-7a68OI7_g,3199
18
18
  adam/utils_net.py,sha256=65fhBnWMCkhGtyHqz95qcHaCo35q-WX1RBkkXG8dKpI,416
19
- adam/version.py,sha256=3Mhc1yrzD17NIXSGACmAcbjGjH1pg8z7tUhhzRQwwgQ,139
19
+ adam/version.py,sha256=H3TCYnY3G88xMwcXM90yFCb-hqjnB-GoHYaNQZENX38,139
20
20
  adam/checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  adam/checks/check.py,sha256=Qopr3huYcMu2bzQgb99dEUYjFzkjKHRI76S6KA9b9Rk,702
22
22
  adam/checks/check_context.py,sha256=FEHkQ32jY1EDopQ2uYWqy9v7aEEX1orLpJWhopwAlh4,402
@@ -171,7 +171,7 @@ adam/k8s_utils/statefulsets.py,sha256=5g7KxGRHgEewT8rnZneDTaJDylUf-dHH2edWJEoorr
171
171
  adam/k8s_utils/volumes.py,sha256=RIBmlOSWM3V3QVXLCFT0owVOyh4rGG1ETp521a-6ndo,1137
172
172
  adam/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
173
  adam/sql/sql_completer.py,sha256=zH2I-WLc7aZmdIg0PlHPVLdxemI8oN8YTCnG7qxcYqA,2907
174
- adam/sql/state_machine.py,sha256=BLX0myqei4vn-Ny1AS1Rg-su7Gahfp85sHmE8q8_4kg,24501
174
+ adam/sql/state_machine.py,sha256=3QMs13F6dDr6FHYkZP7l8TP0P6wkS__Q6CoD0seBDug,25598
175
175
  adam/sql/term_completer.py,sha256=bNnHAVf9NZl52xS_BQpikbOK39gDBJADnT9gSvG0iqI,2539
176
176
  adam/sso/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
177
  adam/sso/authenticator.py,sha256=BCm16L9zf5aLU47-sTCnudn2zLPwd8M2wwRminJfsqw,615
@@ -183,8 +183,8 @@ adam/sso/idp.py,sha256=fvcwUw_URTgsO6ySaqTIw0zQT2qRO1IPSGhf6rPtybo,5804
183
183
  adam/sso/idp_login.py,sha256=QAtCUeDTVWliJy40RK_oac8Vgybr13xH8wzeBoxPaa8,1754
184
184
  adam/sso/idp_session.py,sha256=9BUHNRf70u4rVKrVY1HKPOEmOviXvkjam8WJxmXSKIM,1735
185
185
  adam/sso/sso_config.py,sha256=5N8WZgIJQBtHUy585XLRWKjpU87_v6QluyNK9E27D5s,2459
186
- kaqing-2.0.87.dist-info/METADATA,sha256=u4J5o2OrBxTqMu35ZbFvIYMcfQSfpnn4TCtjfUR7M-Y,132
187
- kaqing-2.0.87.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
188
- kaqing-2.0.87.dist-info/entry_points.txt,sha256=SkzhuQJUWsXOzHeZ5TgQ2c3_g53UGK23zzJU_JTZOZI,39
189
- kaqing-2.0.87.dist-info/top_level.txt,sha256=8_2PZkwBb-xDcnc8a2rAbQeJhXKXskc7zTP7pSPa1fw,5
190
- kaqing-2.0.87.dist-info/RECORD,,
186
+ kaqing-2.0.89.dist-info/METADATA,sha256=VB9GiTJychvJTxeTQsPrEVwZs3WFpFkfzbWrXa1qXuQ,132
187
+ kaqing-2.0.89.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
188
+ kaqing-2.0.89.dist-info/entry_points.txt,sha256=SkzhuQJUWsXOzHeZ5TgQ2c3_g53UGK23zzJU_JTZOZI,39
189
+ kaqing-2.0.89.dist-info/top_level.txt,sha256=8_2PZkwBb-xDcnc8a2rAbQeJhXKXskc7zTP7pSPa1fw,5
190
+ kaqing-2.0.89.dist-info/RECORD,,