1
0
Fork 0
mirror of synced 2024-09-19 18:59:06 +12:00
Commit graph

1020 commits

Author SHA1 Message Date
Sam Rose
a9aa409d7c
Fix up tests. 2024-03-22 15:01:40 +00:00
Sam Rose
545c67eac6
Remove mssql mock, unify SQL-based query tests. 2024-03-20 17:59:35 +00:00
Sam Rose
a81a1b13ce
Remove mysql mocks. 2024-03-20 16:55:34 +00:00
Sam Rose
217b39c232
Reenable no-unused-vars 2024-03-20 11:46:39 +00:00
Sam Rose
efd4496d48
Reenable no-prototype-builtins 2024-03-20 10:27:51 +00:00
Adria Navarro
7d12af9ba8
Merge branch 'master' into reenable-no-case-declarations 2024-03-19 19:51:11 +01:00
Sam Rose
03a702e765
Merge master. 2024-03-19 17:07:26 +00:00
mike12345567
8d7267691d Handling aliasing in column conversions. 2024-03-19 16:28:25 +00:00
mike12345567
6a0e46a0a6 Proper fix, making sure that low level handling of JSON column types correctly handles aliasing. 2024-03-19 16:24:15 +00:00
Sam Rose
476f84c6d1
Merge branch 'master' into reenable-no-useless-escape 2024-03-19 16:00:07 +00:00
Sam Rose
f1278312ab
Reenable no-case-declarations. 2024-03-19 15:58:25 +00:00
Sam Rose
7dc9e4ef3f
Fix incorrect test. 2024-03-19 15:34:02 +00:00
Sam Rose
5749333fc7
Reenable no-useless-escape. 2024-03-19 11:14:16 +00:00
Sam Rose
7a63dc9830
Making progress on getting the eslint-jest plugin working. 2024-03-19 10:46:59 +00:00
Sam Rose
1f63f0bddf
Run auto fix. 2024-03-19 09:46:10 +00:00
Sam Rose
ae0eda21a5
Remove uses of console in tests. 2024-03-18 13:43:43 +00:00
Sam Rose
a5c8e8845f
Implement Adri's type guard suggestion. 2024-03-13 13:38:08 +00:00
Sam Rose
d061c19c80
Remove some extraneous, unused code. 2024-03-12 17:21:33 +00:00
Sam Rose
aff0209176
MariaDB tests passing. 2024-03-12 15:27:34 +00:00
Sam Rose
477d17b53e
Making progress on getting SQL Server working. 2024-03-12 12:25:30 +00:00
Sam Rose
ce209a16b3
Get tests running with SQL Server. Need to make them pass next. 2024-03-12 10:42:42 +00:00
Michael Drury
de56324a4b Linting 2024-03-05 18:16:27 +00:00
Michael Drury
b58b0d3b40 Fixing integration base types. 2024-03-05 18:15:19 +00:00
Michael Drury
1918ec6c68 Reverting type changes. 2024-03-05 18:00:15 +00:00
Michael Drury
b72edc21ec Linting. 2024-03-05 17:46:09 +00:00
Michael Drury
0520c0c540 Adding tests to confirm when aliasing should be used. 2024-03-05 17:27:35 +00:00
Michael Drury
a332c058ce Disabling aliasing on writes (create, update, delete) for MySQL/MS-SQL datasources. 2024-03-05 16:19:21 +00:00
mike12345567
45702ce918 Fixing typing. 2024-03-04 17:02:52 +00:00
mike12345567
86aefcfe1a Updating test values. 2024-03-04 17:00:34 +00:00
mike12345567
a7fcd7cca1 Attempting to fix issue with table name needing to be aliased. 2024-03-04 16:55:10 +00:00
mike12345567
02e3b36cd8 Adding missing files. 2024-03-04 15:47:27 +00:00
mike12345567
7b7d10d1ff Fixing an issue with returning statements in MS-SQL and MySQL, when creating, updating or deleting rows the response is not retrieved correctly when aliased. 2024-03-04 15:47:04 +00:00
Michael Drury
30bd1deb37
Merge branch 'master' into revert-13160-revert-13128-feature/sql-query-aliasing 2024-03-01 11:37:45 +00:00
mike12345567
50bbbb2e06 Updating datasource controller types, this branched out a little bit to removing as many anys as possible, and allowing RowValue to correctly be returned from the allDocs function of the DB. 2024-02-29 16:28:00 +00:00
Michael Drury
c5591ee87f
Revert "Revert "SQL Query aliasing"" 2024-02-29 12:33:03 +00:00
Michael Drury
de3968ffe3
Revert "SQL Query aliasing" 2024-02-29 12:32:15 +00:00
mike12345567
56b1855f6a Adding test cases for table names in table names. 2024-02-28 15:18:07 +00:00
mike12345567
be99d27460 Merging recent changes - had to change some type definitions. 2024-02-28 14:49:11 +00:00
melohagan
039df5d476
FIX: cannot delete a renamed column with a mysql datasource (#13147)
* Support MySQL column rename in Budibase

* Delete NOT ignored types

* unit tests

* update account portal
2024-02-28 13:44:52 +00:00
mike12345567
aa6fa76618 Missing word in test case. 2024-02-28 13:37:47 +00:00
mike12345567
cd81a83b94 Reverting changes to handle full stops. 2024-02-28 13:37:11 +00:00
mike12345567
a2df1deb85 Fixing issue found by test cases, column names containing table names. 2024-02-28 11:08:35 +00:00
mike12345567
0c51a60e9a Updating test cases as per PR comments. 2024-02-28 10:16:21 +00:00
mike12345567
35c1f5bbce Adding handling for columns with dots in them. 2024-02-27 17:15:20 +00:00
mike12345567
fac9f18bc2 PR comments. 2024-02-27 13:40:31 +00:00
mike12345567
c11527d539 Adding in char sequence. 2024-02-27 09:56:56 +00:00
mike12345567
d68fcbf8f7 Loop aliasing. 2024-02-26 18:36:34 +00:00
mike12345567
80dc0beeed Multiline SQL tests. 2024-02-26 18:22:19 +00:00
mike12345567
cb19e1f24c Fixing response types of DS+ query function. 2024-02-26 17:56:28 +00:00
mike12345567
45d2e67905 Adding some new test cases based on finishing off testing. 2024-02-26 13:50:15 +00:00