memgraph/src
Matija Santl df4cbdc5b2 Add error messsage for large integer literals
Summary:
Fixing https://app.asana.com/0/170237629387822/481366792497820/f

Test plan:
Started two builds, one with the fix and the second one without the fix.
Connected to each of them using `neo4j` client.

Logs received from the build wihtout the fix:
```
neo4j> Create (n: BigInteger{id:12345678912345678912345}) return n;
<interactive>:0:0: error:
```
```
I1120 13:29:09.551208 30482 executing.hpp:69] [Run] 'Create (n: BigInteger{id:12345678912345678912345}) return n'
W1120 13:29:09.552387 30482 executing.hpp:145] Error message:
```

Logs received from the build with the fix:
```
neo4j> Create (n: BigInteger{id:12345678912345678912345}) return n;
<interactive>:0:0: error: Integer literal exceeds 64 bits
```
```
I1120 13:29:07.940943 30453 executing.hpp:69] [Run] 'Create (n: BigInteger{id:12345678912345678912345}) return n'
W1120 13:29:07.942919 30453 executing.hpp:146] Error message: Integer literal exceeds 64 bits
```

Reviewers: mislav.bradac, teon.banek

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D997
2017-11-20 14:33:40 +01:00
..
communication Fix SegFault within executor state 2017-11-20 11:27:08 +01:00
data_structures Fix FindChannel implementation 2017-11-15 17:55:33 +01:00
database Vertex and Edge distributed storage support 2017-11-14 15:18:06 +01:00
durability Move WAL implementation to .cpp 2017-11-16 09:12:34 +01:00
io/network Take care of warnings/errors created by cppcheck. 2017-11-10 10:28:02 +01:00
mvcc Write-ahead log 2017-11-13 09:51:39 +01:00
query Add error messsage for large integer literals 2017-11-20 14:33:40 +01:00
storage Vertex and Edge distributed storage support 2017-11-14 15:18:06 +01:00
threading Take care of warnings/errors created by cppcheck. 2017-11-10 10:28:02 +01:00
transactions Fix SegFault within executor state 2017-11-20 11:27:08 +01:00
utils Vertex and Edge distributed storage support 2017-11-14 15:18:06 +01:00
config.hpp Make csv_to_snapshot more user friendly 2017-10-26 09:37:56 +02:00
memgraph_bolt.cpp Prevent double termination signals causing crashes 2017-11-09 10:41:16 +01:00
version.hpp.in Add version.hpp.in and display it on '--version' flag 2017-09-27 09:04:44 +02:00