Skip to content
#

sql-query

Here are 580 public repositories matching this topic...

Archery
Liuzhj
Liuzhj commented Mar 14, 2020

目前遇到的问题/使用障碍

  • 目前已经支持了6种数据库,是否会支持impala? 或者hive等其他。感觉实现方式上不是很困难。建议考虑。
  • 对于数据库的备份,还原等,有一个开源项目用起来还可以,支持多种数据库的备份还原,建议考虑。phpbu
  • 对于mysql或者pg数据库集群的使用,在添加实例的时候需要指定实例的状态是master 还是slave,在实际工作中,主从节点的角色是变化的,人为切换或者故障切换,此时实例的状态就和管理平台上的状态不对应,会造成疑问。想知道此问题有没有进一步的方案或计划?
  • 有没有一种办法,能以网状图或者其他图表的形式,把一个集群内的所有节点关联起来,这样对于集群管理来说,应该是非常好的使用体验。
  • 有没有考虑支持集群节点自发现? 比如手
enhancement good first issue
vscode-sqltools
serdula
serdula commented Feb 17, 2021

Describe the bug
Character greater then > breaks comment in formatter

To Reproduce
Steps to reproduce the behavior:

  1. Go to https://vscode-sqltools.mteixeira.dev/playground/formatter
  2. Click on insert into below text:
    -- comments are
    -- breaks by sign greater than >
    -- unfortunately
  3. See error

Expected behavior
the comment should not be affected by a character grea

bug formatting good first issue
lorenzofox3
lorenzofox3 commented Dec 11, 2018

Feature request:

Select builders are often used in sub query with aliases.
It would be a nice syntax addition if instead of using an object we could output the builder with a alias directly thanks to an as method

//currently 
sh.select().from({
  as:'foo',
  value:sh.select().from('users').where('age','>',42).noop()
});

could be written:

sh.sele
help wanted good first issue syntax sugar query-builder

Improve this page

Add a description, image, and links to the sql-query topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the sql-query topic, visit your repo's landing page and select "manage topics."

Learn more