We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6965917 commit 18a27aaCopy full SHA for 18a27aa
1 file changed
chat2db-client/src/utils/IntelliSense/table.ts
@@ -27,11 +27,10 @@ const checkTableContext = (text) => {
27
};
28
29
const handleInsertText = (keyword: string, tableName: string, databaseCode: DatabaseTypeCode) => {
30
- console.log('test', /^[\"\`\[]/.test(keyword));
31
if (/^[\"\`\[]/.test(keyword)) {
32
return tableName;
33
}
34
- console.log('databaseCode', databaseCode);
+
35
return compatibleDataBaseName(tableName, databaseCode);
36
37
@@ -63,7 +62,6 @@ const registerIntelliSenseTable = (
63
62
const match = lineContentUntilPosition.match(/\S+$/);
64
const word = match ? match[0] : '';
65
66
- console.log('触发提示的字符:', word);
67
return {
68
suggestions: (tableList || []).map((tableName) => {
69
0 commit comments