Ben Johnson
9ebf0e2119
Upgrade go.mod to featurebase/v3
2022-01-21 10:57:05 -07:00
reesporte
48aef0c8a4
add copyright notice back in
...
```bash
for file in `cat diffys`; do
printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file;
done
```
2021-12-10 11:01:04 -06:00
reesporte
4c53f86e82
removed license from each go file
...
i used this script, a little clunky but it got the job done
```bash
for file in `find . -type f -print | grep '\.go'`; do
sed '1,/^\/\/ limitations under the License.$/d' $file > $file.tmp;
result=`cat $file.tmp`
if [[ result != "" ]]; then
gofmt $file.tmp &> /dev/null;
if [[ $? == 0 ]]; then
mv $file.tmp $file && gofmt -w $file;
else
rm $file.tmp;
fi
else
rm $file.tmp;
fi
done
```
2021-12-10 09:17:17 -06:00
Ben Johnson
98e7ade591
CORE-809: Aggregate COUNT() with INNER JOIN
2021-10-07 14:20:07 -06:00
Ben Johnson
b7126a5859
Allow StmtRows.Scan() for more types
2021-09-28 13:16:24 -06:00
Todd Gruben
ed1cf7ffef
cleanup and applied review suggestions
2021-09-27 07:05:08 -05:00
Todd Gruben
c4e64528e0
fix
2021-09-25 13:56:36 -05:00
Todd Gruben
9c8538ec5a
docker fix not really related to anything
2021-09-25 13:53:19 -05:00
Ben Johnson
1527eea14b
Fix SQL column mappings
2021-09-25 09:36:11 -06:00
Ben Johnson
ff8f0cab96
Add SQL type checking
2021-09-24 14:02:20 -06:00
Ben Johnson
b4cbd45b84
Implement SQL GROUP BY
2021-09-19 08:45:35 -06:00
Ben Johnson
92646cbdf7
Implement non-aggregate SELECT query
2021-09-08 08:09:54 -06:00
Ben Johnson
6bf854862b
Handle SQL WHERE clause
2021-08-26 08:25:16 -06:00
Ben Johnson
5122c2decc
Refactor SQL planner to inside Server
2021-08-16 13:12:16 -06:00
Ben Johnson
9b8dc3d7e6
Implement basic SQL COUNT(*) query
2021-08-13 10:41:39 -06:00